summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-09 20:55:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-09 20:55:01 (GMT)
commit97179b0f58ebb13c6053096dc9fb7aff9f4abf33 (patch)
treea1c433d20d2640655da69e845afb19545d7aa727 /Misc/NEWS
parentc0f10f34b13a8b70a776015c6be07b913209582f (diff)
downloadcpython-97179b0f58ebb13c6053096dc9fb7aff9f4abf33.zip
cpython-97179b0f58ebb13c6053096dc9fb7aff9f4abf33.tar.gz
cpython-97179b0f58ebb13c6053096dc9fb7aff9f4abf33.tar.bz2
Fix #3634 invalid return value from _weakref.ref(Exception).__init__
Reviewers: Amaury, Antoine, Benjamin
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fca795..4a201f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 release candidate 1?
Core and Builtins
-----------------
+- Issue #3634: _weakref.ref(Exception).__init__() gave invalid return value on
+ error.
+
- Issue #3777: long() applied to a float object now always return a long
object; previously an int would be returned for small values. the __long__
method is allowed to return either an int or a long, but the behaviour of