[issue33026] Fix jumping out of "with" block

2018-03-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33026] Fix jumping out of "with" block

2018-03-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3854f5885edc8dc67b1aba82fbb525604fbc625b by Serhiy Storchaka (Miss Islington (bot)) in branch '2.7': [2.7] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (GH-6074) (GH-6076)

[issue33026] Fix jumping out of "with" block

2018-03-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 20ac11a9fb027f183914bbaaaed091b57c882e54 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': [3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (GH-6074) (GH-6075)

[issue33026] Fix jumping out of "with" block

2018-03-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +5836 ___ Python tracker ___

[issue33026] Fix jumping out of "with" block

2018-03-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +5835 ___ Python tracker ___

[issue33026] Fix jumping out of "with" block

2018-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 04aadf23eac51fec2e436c5960c1362bbb7d03de by Serhiy Storchaka in branch '3.7': [3.7] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (#6074)

[issue33026] Fix jumping out of "with" block

2018-03-10 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +5834 ___ Python tracker ___ ___

[issue33026] Fix jumping out of "with" block

2018-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 26c9f565d016db21257a60d29ab2c99383dd5ac7 by Serhiy Storchaka in branch 'master': bpo-33026: Fix jumping out of "with" block by setting f_lineno. (#6026)

[issue33026] Fix jumping out of "with" block

2018-03-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Well, it is not hard to fix this in older versions. -- versions: +Python 2.7, Python 3.6, Python 3.7 ___ Python tracker

[issue33026] Fix jumping out of "with" block

2018-03-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5789 stage: -> patch review ___ Python tracker ___

[issue33026] Fix jumping out of "with" block

2018-03-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The proposed PR fixes jumping from "with" block. Currently the exit function is left on the stack. This fix is for 3.8 only. 3.7 and older versions are affected by this bug, but since the code was significantly changed in