diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-07 07:05:57 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-07 07:05:57 (GMT) |
commit | a6b45cc31d33c166c84866f78d504a99d409895c (patch) | |
tree | daffa37b19305cdf19902242a177ed436e396fb1 /Misc | |
parent | 84667c063a1e93a985134f7cef376edf82941c02 (diff) | |
download | cpython-a6b45cc31d33c166c84866f78d504a99d409895c.zip cpython-a6b45cc31d33c166c84866f78d504a99d409895c.tar.gz cpython-a6b45cc31d33c166c84866f78d504a99d409895c.tar.bz2 |
Eliminate the deprecated option to return None instead of a tuple of arguments in __reduce__().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -17,6 +17,9 @@ Core and builtins 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 @@ Extension Modules 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. |