summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-18 10:23:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-18 10:23:18 (GMT)
commit04eb7772794a11bdb7ed7cd132adebb2ae527191 (patch)
tree0d1701ac0b6310593bd2f8a124c5c19056c509a3 /Misc/NEWS
parente5b0bd1ba2687a582bbb7e47580e6507ed2a9253 (diff)
downloadcpython-04eb7772794a11bdb7ed7cd132adebb2ae527191.zip
cpython-04eb7772794a11bdb7ed7cd132adebb2ae527191.tar.gz
cpython-04eb7772794a11bdb7ed7cd132adebb2ae527191.tar.bz2
Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
loss in PyTraceBack_Here().
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 82cf8b0..2d50cf6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
+ loss in PyTraceBack_Here().
+
- Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().
Patch by Xiang Zhang.