diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-02-20 06:33:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 06:33:02 (GMT) |
commit | 9a4577a4bb23888fed2cf192cf1a4c95ce5c26f8 (patch) | |
tree | 605e1fef8b7bf179c99645802b48ceb114cc2ac1 /Misc/NEWS | |
parent | a4afdfcf27c2fa53c60b65867765244361abb1fc (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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]. |