This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: IDLE: add 'async' to codecontext block openers
Type: enhancement Stage: resolved
Components: IDLE Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: miss-islington, terry.reedy
Priority: normal Keywords: patch

Created on 2018-05-17 23:34 by terry.reedy, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6960 merged terry.reedy, 2018-05-17 23:45
PR 6961 merged miss-islington, 2018-05-18 00:39
PR 6962 merged miss-islington, 2018-05-18 00:40
Messages (4)
msg316991 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-05-17 23:34
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.
msg316993 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-05-18 00:38
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
msg316999 - (view) Author: miss-islington (miss-islington) Date: 2018-05-18 01:25
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
msg317001 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-05-18 02:04
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/b2a02b9d88db04c12f800bc088afea0ef6862673
History
Date User Action Args
2022-04-11 14:59:00adminsetgithub: 77745
2018-05-18 03:24:23terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-05-18 02:04:32terry.reedysetmessages: + msg317001
2018-05-18 01:25:35miss-islingtonsetnosy: + miss-islington
messages: + msg316999
2018-05-18 00:40:51miss-islingtonsetpull_requests: + pull_request6621
2018-05-18 00:39:54miss-islingtonsetpull_requests: + pull_request6620
2018-05-18 00:38:51terry.reedysetmessages: + msg316993
2018-05-17 23:45:08terry.reedysetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request6619
2018-05-17 23:34:19terry.reedycreate