summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-30 21:40:05 +0000
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-30 21:40:05 +0000
commit327380cf9125dc897c48417280a9779a263bb118 (patch)
tree0a73b761364710e3749b313eb8ada51b57f0233d /Misc
parent95df21c1c724c95d9cb1f351e0ef53f0955bc21d (diff)
downloadcpython-327380cf9125dc897c48417280a9779a263bb118.tar.gz
Issue #4176: Pickle would crash the interpreter when a __reduce__ function
does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) Backport of r67049.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e62bb7cf6b..6e8a25ad60 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
+- Issue #4176: Fixed a crash when pickling an object which ``__reduce__``
+ method does not return iterators for the 4th and 5th items.
+
- Issue #3967: Fixed a crash in the count() and find() methods of string-like
objects, when the "start" parameter is a huge value.