mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
bpo-37321: Edit IDLE subprocess connection error messages. (#14170)
Mainly, add a doc reference to message in pyshell.
This commit is contained in:
parent
5bff3c86ab
commit
8fac122109
4 changed files with 16 additions and 9 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue