]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Make it slightly clearer that IDLE close message is referring to user program,
authorTerry Jan Reedy <tjreedy@udel.edu>
Fri, 20 Nov 2015 17:21:40 +0000 (12:21 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Fri, 20 Nov 2015 17:21:40 +0000 (12:21 -0500)
not to IDLE itself.

Lib/idlelib/PyShell.py

index a6f24485e7c01184c48ad215068e52b5a53ea8ba..ea0d7de9ef99d44dfcec2326c3de364bff9fe922 100755 (executable)
@@ -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: