diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-09 20:55:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-09 20:55:01 (GMT) |
commit | 97179b0f58ebb13c6053096dc9fb7aff9f4abf33 (patch) | |
tree | a1c433d20d2640655da69e845afb19545d7aa727 /Misc | |
parent | c0f10f34b13a8b70a776015c6be07b913209582f (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |