[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2a1bf0633cd0c55662df7875ee2b1654251adf6b by Serhiy Storchaka in branch '2.7': [2.7] [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (GH-1131). (GH-1185) (#1189)

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1317 ___ Python tracker ___ ___

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 952a05e4e2cf082b74a1676a2804f1f43a9b7702 by Serhiy Storchaka in branch '3.5': [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (GH-1131). (#1185)

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 39dedb6e1a18069ce8f5c8e6076e9d9ef9d6d515 by Serhiy Storchaka in branch '3.6': [3.6] bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (GH-1131). (#1184)

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1314 ___ Python tracker ___ ___

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1313 ___ Python tracker ___ ___

[issue30070] Fix errors handling in the parser module

2017-04-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a79f4c219531c05fc8f670c1e4bbf12c081935d3 by Serhiy Storchaka in branch 'master': bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (#1131)

[issue30070] Fix errors handling in the parser module

2017-04-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: LGTM -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list

[issue30070] Fix errors handling in the parser module

2017-04-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue30070] Fix errors handling in the parser module

2017-04-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1265 ___ Python tracker ___ ___

[issue30070] Fix errors handling in the parser module

2017-04-14 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes miscellaneous errors in errors handling in the parser module. This errors can cause leaking references, raising wrong exceptions, and even crashing. -- components: Extension Modules messages: 291645 nosy: benjamin.peterson,