[Python-checkins] cpython (3.4): Make it slightly clearer that IDLE close message is referring to user program,

terry.reedy python-checkins at python.org
Fri Nov 20 12:22:40 EST 2015


https://hg.python.org/cpython/rev/8636f0625408
changeset:   99230:8636f0625408
branch:      3.4
parent:      99224:3e723559d9f1
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Nov 20 12:21:48 2015 -0500
summary:
  Make it slightly clearer that IDLE close message is referring to user program,
not to IDLE itself.

files:
  Lib/idlelib/PyShell.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -989,7 +989,7 @@
         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:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list