[Python-checkins] python/dist/src/Misc NEWS,1.1207,1.1208

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Tue Dec 7 08:06:00 CET 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19035/Misc

Modified Files:
	NEWS 
Log Message:
Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__().

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1207
retrieving revision 1.1208
diff -u -d -r1.1207 -r1.1208
--- NEWS	7 Dec 2004 03:25:18 -0000	1.1207
+++ NEWS	7 Dec 2004 07:05:53 -0000	1.1208
@@ -17,6 +17,9 @@
 Extension Modules
 -----------------
 
+- the cPickle module no longer accepts the deprecated None option in the
+  args tuple returned by __reduce__().
+
 - itertools.islice() now accepts None for the start and step arguments.
   This allows islice() to work more readily with slices:
       islice(s.start, s.stop, s.step)
@@ -25,6 +28,9 @@
 Library
 -------
 
+- the pickle module no longer accepts the deprecated None option in the
+  args tuple returned by __reduce__().
+
 - optparse now optionally imports gettext.  This allows its use in setup.py.
 
 - the deprecated tzparse module was removed.



More information about the Python-checkins mailing list