summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-11-20 17:21:48 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-11-20 17:21:48 (GMT)
commit4379d15d4c43db3d92658826906ed6326487b333 (patch)
tree6f734d0589fc6dddd70284a20c92c9a44df6db45 /Lib/idlelib
parent51d3f8b0baf76f71fa9a72cd069c1cd2e77eb2a4 (diff)
downloadcpython-4379d15d4c43db3d92658826906ed6326487b333.zip
cpython-4379d15d4c43db3d92658826906ed6326487b333.tar.gz
cpython-4379d15d4c43db3d92658826906ed6326487b333.tar.bz2
Make it slightly clearer that IDLE close message is referring to user program,
not to IDLE itself.
Diffstat (limited to 'Lib/idlelib')
-rwxr-xr-xLib/idlelib/PyShell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 058dfb9..1bcc9b6 100755
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -989,7 +989,7 @@ class PyShell(OutputWindow):
if self.executing:
response = tkMessageBox.askokcancel(
"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",
parent=self.text)
if response is False: