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: Make Subprocess Connection Errors consistent.
Type: Stage: resolved
Components: IDLE Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: miss-islington, terry.reedy
Priority: normal Keywords: patch

Created on 2019-06-17 20:14 by terry.reedy, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14170 merged terry.reedy, 2019-06-17 20:42
PR 14173 merged miss-islington, 2019-06-17 21:24
PR 14174 merged miss-islington, 2019-06-17 21:24
Messages (5)
msg345898 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2019-06-17 20:14
A Subprocess Connection Error (new consistent name) can be displayed by either the user or IDLE process (run and pyshell modules). The latter is much more common.  Only the former was updated to refer to the newish doc section.  Update the latter also.  Otherwise, make more consistent.  (May someday combine into one function.)
msg345912 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2019-06-17 21:23
New changeset 8fac1221097aaf6ac37ed9ea727ee7892085e183 by Terry Jan Reedy in branch 'master':
 bpo-37321: Edit IDLE subprocess connection error messages. (#14170)
https://github.com/python/cpython/commit/8fac1221097aaf6ac37ed9ea727ee7892085e183
msg345917 - (view) Author: miss-islington (miss-islington) Date: 2019-06-17 21:50
New changeset 336cf399546f3362033f9d2b475feae050373ef8 by Miss Islington (bot) in branch '3.7':
bpo-37321: Edit IDLE subprocess connection error messages. (GH-14170)
https://github.com/python/cpython/commit/336cf399546f3362033f9d2b475feae050373ef8
msg345918 - (view) Author: miss-islington (miss-islington) Date: 2019-06-17 21:51
New changeset 02f7f741e83c018015eb8fcb95bd592c1787fe5f by Miss Islington (bot) in branch '3.8':
bpo-37321: Edit IDLE subprocess connection error messages. (GH-14170)
https://github.com/python/cpython/commit/02f7f741e83c018015eb8fcb95bd592c1787fe5f
msg345920 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2019-06-17 21:53
New code tested by copying into a temporary test fixture.
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81502
2019-06-17 21:53:04terry.reedysetstatus: open -> closed
resolution: fixed
messages: + msg345920

stage: patch review -> resolved
2019-06-17 21:51:11miss-islingtonsetmessages: + msg345918
2019-06-17 21:50:52miss-islingtonsetnosy: + miss-islington
messages: + msg345917
2019-06-17 21:24:14miss-islingtonsetpull_requests: + pull_request14015
2019-06-17 21:24:05miss-islingtonsetpull_requests: + pull_request14014
2019-06-17 21:23:38terry.reedysetmessages: + msg345912
2019-06-17 20:42:24terry.reedysetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request14012
2019-06-17 20:14:20terry.reedycreate