summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-18 10:27:54 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-18 10:27:54 (GMT)
commit60c838b27c9c3dfcb8a198fc7067f9491c42935c (patch)
tree8a08a82480aa787194f84763973e7bee9a0407a9 /Misc
parent810d62d73e69be214e832963381244cf1b1e1e75 (diff)
parentdf0fd74ae8fa204aab51c35e10870fd99101e99c (diff)
downloadcpython-60c838b27c9c3dfcb8a198fc7067f9491c42935c.zip
cpython-60c838b27c9c3dfcb8a198fc7067f9491c42935c.tar.gz
cpython-60c838b27c9c3dfcb8a198fc7067f9491c42935c.tar.bz2
Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
loss in PyTraceBack_Here().
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 e0ec447..f5a36f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1
Core and Builtins
-----------------
+- Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
+ loss in PyTraceBack_Here().
+
- Issue #28183: Optimize and cleanup dict iteration.
- Issue #26081: Added C implementation of asyncio.Future.