diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-02-20 06:32:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 06:32:53 (GMT) |
commit | 7131a73f9655cfd325c798385905326f57b94640 (patch) | |
tree | 9952b4359f776b2f2d88c2cf53f2a9441f062395 /Misc | |
parent | af9a40d58c5992b60dc7f361d1b52720c1641cca (diff) | |
download | cpython-7131a73f9655cfd325c798385905326f57b94640.zip cpython-7131a73f9655cfd325c798385905326f57b94640.tar.gz cpython-7131a73f9655cfd325c798385905326f57b94640.tar.bz2 |
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#187)
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 2.7.14? Core and Builtins ----------------- +- bpo-29347: Fixed possibly dereferencing undefined pointers + when creating weakref objects. + - Issue #14376: Allow sys.exit to accept longs as well as ints. Patch by Gareth Rees. |