summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-02-20 06:33:02 (GMT)
committerGitHub <noreply@github.com>2017-02-20 06:33:02 (GMT)
commit9a4577a4bb23888fed2cf192cf1a4c95ce5c26f8 (patch)
tree605e1fef8b7bf179c99645802b48ceb114cc2ac1 /Misc/NEWS
parenta4afdfcf27c2fa53c60b65867765244361abb1fc (diff)
downloadcpython-9a4577a4bb23888fed2cf192cf1a4c95ce5c26f8.zip
cpython-9a4577a4bb23888fed2cf192cf1a4c95ce5c26f8.tar.gz
cpython-9a4577a4bb23888fed2cf192cf1a4c95ce5c26f8.tar.bz2
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#186)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b631fde..0fed99b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1?
Core and Builtins
-----------------
+- bpo-29347: Fixed possibly dereferencing undefined pointers
+ when creating weakref objects.
+
- bpo-29438: Fixed use-after-free problem in key sharing dict.
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].