summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-04-20 20:42:49 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-04-20 20:42:49 (GMT)
commitbcc17eefd2b630aca2fc0f4e27f274a028030542 (patch)
treecb5ee87cd8a49f2f2a8fc4cac979e4ca35bca81c /Misc
parent63674f4b52aa7c2832fec09a026e24cd521e491b (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index addae1b..56d4876 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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 ``__``.