| commit | bcc17eefd2b630aca2fc0f4e27f274a028030542 | [log] [tgz] |
|---|---|---|
| author | Mark Dickinson <mdickinson@enthought.com> | Fri Apr 20 21:42:49 2012 +0100 |
| committer | Mark Dickinson <mdickinson@enthought.com> | Fri Apr 20 21:42:49 2012 +0100 |
| tree | cb5ee87cd8a49f2f2a8fc4cac979e4ca35bca81c | |
| parent | 63674f4b52aa7c2832fec09a026e24cd521e491b [diff] [blame] |
Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass.
diff --git a/Misc/NEWS b/Misc/NEWS index addae1b..56d4876 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ 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 ``__``.