summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-02-12 04:51:30 (GMT)
committerGitHub <noreply@github.com>2017-02-12 04:51:30 (GMT)
commit2294f3aee14a6074b17c67ef936c607430bb3c7a (patch)
tree3519ef6fe1a64699303a0e93a1aee67c565bb476 /Misc
parente7ffb99f842ebff97cffa0fc90b18be4e5abecf2 (diff)
downloadcpython-2294f3aee14a6074b17c67ef936c607430bb3c7a.zip
cpython-2294f3aee14a6074b17c67ef936c607430bb3c7a.tar.gz
cpython-2294f3aee14a6074b17c67ef936c607430bb3c7a.tar.bz2
bpo-29438: fixed use-after-free in key sharing dict (#17)
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 48d786d..eb870b7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.7.0 alpha 1?
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.