summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-11-20 17:21:40 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-11-20 17:21:40 (GMT)
commit815ab140302a2f7a541d1bbda650875bd47f8ea2 (patch)
treebaae496a7f8c9cffc59ca5082821d57e499b9a33 /Lib/idlelib/PyShell.py
parent2a6c2c9baa4bef29d605438c3e2ada01a240bdc3 (diff)
downloadcpython-815ab140302a2f7a541d1bbda650875bd47f8ea2.zip
cpython-815ab140302a2f7a541d1bbda650875bd47f8ea2.tar.gz
cpython-815ab140302a2f7a541d1bbda650875bd47f8ea2.tar.bz2
Make it slightly clearer that IDLE close message is referring to user program,
not to IDLE itself.
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-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 a6f2448..ea0d7de 100755
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -1006,7 +1006,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: