summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-04-19 20:44:43 (GMT)
committerGitHub <noreply@github.com>2017-04-19 20:44:43 (GMT)
commit952a05e4e2cf082b74a1676a2804f1f43a9b7702 (patch)
tree3d577d72aadc9aea26b09e2186b6f5cad080e9aa /Misc/NEWS
parente63af29c87b44bb7ada5783cd0ff6ee6d4f9c17c (diff)
downloadcpython-952a05e4e2cf082b74a1676a2804f1f43a9b7702.zip
cpython-952a05e4e2cf082b74a1676a2804f1f43a9b7702.tar.gz
cpython-952a05e4e2cf082b74a1676a2804f1f43a9b7702.tar.bz2
[3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (GH-1131). (#1185)
(cherry picked from commit a79f4c219531c05fc8f670c1e4bbf12c081935d3)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 011663d..d9494c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,8 @@ Extension Modules
Library
-------
+- bpo-30070: Fixed leaks and crashes in errors handling in the parser module.
+
- bpo-30061: Fixed crashes in IOBase methods __next__() and readlines() when
readline() or __next__() respectively return non-sizeable object.
Fixed possible other errors caused by not checking results of PyObject_Size(),