summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJim Fulton <jim@zope.com>2004-02-08 04:21:26 (GMT)
committerJim Fulton <jim@zope.com>2004-02-08 04:21:26 (GMT)
commit8a1a5945908c7a0b2b487a98431ff46ab934014a (patch)
treed366a15b19d7e6c171081c025b1f49fff62a964d /Misc
parentee33b27ef0bd49227aa59f0d3bca67e7f1e0ab64 (diff)
downloadcpython-8a1a5945908c7a0b2b487a98431ff46ab934014a.zip
cpython-8a1a5945908c7a0b2b487a98431ff46ab934014a.tar.gz
cpython-8a1a5945908c7a0b2b487a98431ff46ab934014a.tar.bz2
Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocol
2. Failure to clear the error when attempts to get the __getstate__ attribute fail caused intermittent errors and odd behavior.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 939ce66..33ff152 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -136,6 +136,10 @@ Core and builtins
same as split() except that it scans the string from the end
working towards the beginning. See SF feature request 801847.
+- Fixed a bug in object.__reduce_ex__ when using protocol 2. Failure
+ to clear the error when attempts to get the __getstate__ attribute
+ fail caused intermittent errors and odd behavior.
+
Extension modules
-----------------