diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-09-27 18:38:59 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-09-27 18:38:59 (GMT) |
commit | 7c95bb35e40a1bb598a259248b5a9880d8716556 (patch) | |
tree | 5891ec02508da616ea5bc98e31ac75d9c26663e4 /Misc | |
parent | 3658cb3012fa14e4594ed62a227115fbbd15da26 (diff) | |
download | cpython-7c95bb35e40a1bb598a259248b5a9880d8716556.zip cpython-7c95bb35e40a1bb598a259248b5a9880d8716556.tar.gz cpython-7c95bb35e40a1bb598a259248b5a9880d8716556.tar.bz2 |
Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.1? Core and Builtins ----------------- +- Issue #16060: Fix refcounting bug when __trunc__ returns an object + whose __int__ gives a non-integer. Patch by Serhiy Storchaka. + - Issue #16046: Fix loading sourceless legacy pyos. - Issue #15379: Fix passing of non-BMP characters as integers for the charmap |