summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-02-13 00:16:20 (GMT)
committerGitHub <noreply@github.com>2017-02-13 00:16:20 (GMT)
commit06a4fcb2458c5904968b5c8fe6b64940ba83a50d (patch)
tree6641344ebdc24123e0ea0f6bbf3d77db301f7146 /Misc
parentcabd1c7462ef991937e0e759b9bf307b3091ef06 (diff)
downloadcpython-06a4fcb2458c5904968b5c8fe6b64940ba83a50d.zip
cpython-06a4fcb2458c5904968b5c8fe6b64940ba83a50d.tar.gz
cpython-06a4fcb2458c5904968b5c8fe6b64940ba83a50d.tar.bz2
bpo-29438: Fixed use-after-free in key sharing dict (#40)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e1b32ad..6a1abf1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ Release date: XXXX-XX-XX
Core and Builtins
-----------------
+- bpo-29438: Fixed use-after-free problem in key sharing dict.
+
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
- Issue #29337: Fixed possible BytesWarning when compare the code objects.