[Python-checkins] python/dist/src/Lib/test pickletester.py,1.30,1.31

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 31 Jan 2003 18:16:39 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv14164/Lib/test

Modified Files:
	pickletester.py 
Log Message:
Removed all uses of the out-of-favor __safe_for_unpickling__ magic
attr, and copy_reg.safe_constructors.


Index: pickletester.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/pickletester.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** pickletester.py	29 Jan 2003 17:58:44 -0000	1.30
--- pickletester.py	1 Feb 2003 02:16:36 -0000	1.31
***************
*** 16,21 ****
  class initarg(C):
  
-     __safe_for_unpickling__ = 1
- 
      def __init__(self, a, b):
          self.a = a
--- 16,19 ----