summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-02-20 06:32:53 (GMT)
committerGitHub <noreply@github.com>2017-02-20 06:32:53 (GMT)
commit7131a73f9655cfd325c798385905326f57b94640 (patch)
tree9952b4359f776b2f2d88c2cf53f2a9441f062395 /Misc
parentaf9a40d58c5992b60dc7f361d1b52720c1641cca (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f0ba8c6..8726996 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.