diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-04-20 20:42:49 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-04-20 20:42:49 (GMT) |
commit | bcc17eefd2b630aca2fc0f4e27f274a028030542 (patch) | |
tree | cb5ee87cd8a49f2f2a8fc4cac979e4ca35bca81c /Misc | |
parent | 63674f4b52aa7c2832fec09a026e24cd521e491b (diff) | |
download | cpython-bcc17eefd2b630aca2fc0f4e27f274a028030542.zip cpython-bcc17eefd2b630aca2fc0f4e27f274a028030542.tar.gz cpython-bcc17eefd2b630aca2fc0f4e27f274a028030542.tar.bz2 |
Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass.
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.2.4 Core and Builtins ----------------- +- Issue #14630: Fix a memory access bug for instances of a subclass of int + with value 0. + - Issue #14612: Fix jumping around with blocks by setting f_lineno. - Issue #14607: Fix keyword-only arguments which started with ``__``. |