[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b2a02b9d88db04c12f800bc088afea0ef6862673 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-33564: Add async to IDLE's code context block openers. (GH-6960) (#6961) https://github.com/python/cpython/commit/b2a02b9d88db04c12f800bc088af

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread miss-islington
miss-islington added the comment: New changeset eb4590e4d9abecdbbc91c3531df83e1f9bed50f1 by Miss Islington (bot) in branch '3.6': bpo-33564: Add async to IDLE's code context block openers. (GH-6960) https://github.com/python/cpython/commit/eb4590e4d9abecdbbc91c3531df83e1f9bed50f1 --

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +6621 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +6620 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset d89ca94847d943b883ebcc68e4f0a18cb042ed0d by Terry Jan Reedy in branch 'master': bpo-33564: Add async to IDLE's code context block openers. (GH-6960) https://github.com/python/cpython/commit/d89ca94847d943b883ebcc68e4f0a18cb042ed0d -- _

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +6619 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyt

[issue33564] IDLE: add 'async' to codecontext block openers

2018-05-17 Thread Terry J. Reedy
New submission from Terry J. Reedy : I am just going to add 'async' to BLOCKOPENERS. I don't think this needs a particular test, as most of the openers are not used in the new tests added by #32831. We could eventually expand the sample to have one of each opener. -- assignee: terry.