[issue32489] Allow 'continue' in 'finally' clause

2019-08-12 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +14954 pull_request: https://github.com/python/cpython/pull/15230 ___ Python tracker ___

[issue32489] Allow 'continue' in 'finally' clause

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

[issue32489] Allow 'continue' in 'finally' clause

2018-03-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset fe2bbb1869b4a3f331a3dfb8b304a19a5819 by Serhiy Storchaka in branch 'master': bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)

[issue32489] Allow 'continue' in 'finally' clause

2018-03-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If there are no objections I'll merge this PR soon. -- versions: +Python 3.8 -Python 3.7 ___ Python tracker

[issue32489] Allow 'continue' in 'finally' clause

2018-02-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +5599 ___ Python tracker ___ ___

[issue32489] Allow 'continue' in 'finally' clause

2018-02-13 Thread Nitish
Change by Nitish : -- nosy: +nitishch ___ Python tracker ___ ___ Python-bugs-list

[issue32489] Allow 'continue' in 'finally' clause

2018-02-13 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: -5461 ___ Python tracker ___

[issue32489] Allow 'continue' in 'finally' clause

2018-02-13 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5461 stage: -> patch review ___ Python tracker ___

[issue32489] Allow 'continue' in 'finally' clause

2018-01-03 Thread Guido van Rossum
Guido van Rossum added the comment: I think this should be accepted once the code is reviewed. -- ___ Python tracker ___

[issue32489] Allow 'continue' in 'finally' clause

2018-01-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See the patch against PR 5006 at https://github.com/serhiy-storchaka/cpython/pull/2. -- ___ Python tracker

[issue32489] Allow 'continue' in 'finally' clause

2018-01-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : A 'continue' statement is illegal in the 'finally' clause due to a problem with the current implementation. After resolving issue17611 it will be easy to remove this restriction. -- assignee: serhiy.storchaka