summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-17 22:50:45 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-17 22:50:45 (GMT)
commitd92f04062a8cb3c01ac44f67f7bde8a11b285457 (patch)
tree2259b2ace42de43b616f624a07de20dd2d2dbf6c /Misc
parentbbda0c5fbc757a2751263720dc6a255f517e5261 (diff)
downloadcpython-d92f04062a8cb3c01ac44f67f7bde8a11b285457.zip
cpython-d92f04062a8cb3c01ac44f67f7bde8a11b285457.tar.gz
cpython-d92f04062a8cb3c01ac44f67f7bde8a11b285457.tar.bz2
Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
python when they contain instances of old-style classes.
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 04309a7..afe263a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1429,6 +1429,9 @@ Library
Extension Modules
-----------------
+- Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
+ python when they contain instances of old-style classes.
+
- Issue #9165: Add new functions math.isfinite and cmath.isfinite, to
accompany existing isinf and isnan functions.