diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-04-19 20:44:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 20:44:43 (GMT) |
commit | 952a05e4e2cf082b74a1676a2804f1f43a9b7702 (patch) | |
tree | 3d577d72aadc9aea26b09e2186b6f5cad080e9aa /Misc/NEWS | |
parent | e63af29c87b44bb7ada5783cd0ff6ee6d4f9c17c (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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(), |