Commit 4379d15d authored by Terry Jan Reedy's avatar Terry Jan Reedy

Make it slightly clearer that IDLE close message is referring to user program,

not to IDLE itself.
parent 51d3f8b0
...@@ -989,7 +989,7 @@ class PyShell(OutputWindow): ...@@ -989,7 +989,7 @@ class PyShell(OutputWindow):
if self.executing: if self.executing:
response = tkMessageBox.askokcancel( response = tkMessageBox.askokcancel(
"Kill?", "Kill?",
"The program is still running!\n Do you want to kill it?", "Your program is still running!\n Do you want to kill it?",
default="ok", default="ok",
parent=self.text) parent=self.text)
if response is False: if response is False:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment