[Python-checkins] python/dist/src/Objects structseq.c,1.11,1.12

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/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv14164/Objects

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


Index: structseq.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/structseq.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** structseq.c	18 Dec 2002 23:20:39 -0000	1.11
--- structseq.c	1 Feb 2003 02:16:37 -0000	1.12
***************
*** 393,396 ****
  	PyDict_SetItemString(dict, unnamed_fields_key, 
  		       PyInt_FromLong((long) n_unnamed_members));
- 	PyDict_SetItemString(dict, "__safe_for_unpickling__", Py_True);
  }
--- 393,395 ----