diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-06-17 21:23:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 21:23:28 (GMT) |
commit | 8fac1221097aaf6ac37ed9ea727ee7892085e183 (patch) | |
tree | f7bc6495e7f255dca462d07dcadaccffa5c74ba2 /Lib/idlelib/pyshell.py | |
parent | 5bff3c86ab77e9d831b3cd19b45654c7eef22931 (diff) | |
download | cpython-8fac1221097aaf6ac37ed9ea727ee7892085e183.zip cpython-8fac1221097aaf6ac37ed9ea727ee7892085e183.tar.gz cpython-8fac1221097aaf6ac37ed9ea727ee7892085e183.tar.bz2 |
bpo-37321: Edit IDLE subprocess connection error messages. (#14170)
Mainly, add a doc reference to message in pyshell.
Diffstat (limited to 'Lib/idlelib/pyshell.py')
-rwxr-xr-x | Lib/idlelib/pyshell.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index 6e0707d..7ad5a76 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -824,10 +824,10 @@ class ModifiedInterpreter(InteractiveInterpreter): def display_no_subprocess_error(self): tkMessageBox.showerror( - "Subprocess Startup Error", - "IDLE's subprocess didn't make connection. Either IDLE can't " - "start a subprocess or personal firewall software is blocking " - "the connection.", + "Subprocess Connection Error", + "IDLE's subprocess didn't make connection.\n" + "See the 'Startup failure' section of the IDLE doc, online at\n" + "https://docs.python.org/3/library/idle.html#startup-failure", parent=self.tkconsole.text) def display_executing_dialog(self): |