]> 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:48 +0000 (12:21 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Fri, 20 Nov 2015 17:21:48 +0000 (12:21 -0500)
not to IDLE itself.

Lib/idlelib/PyShell.py

index 058dfb92e50d36ce0a84ba8287b4e255dd1d49cc..1bcc9b68143f6a7ee93dffa77d4915e32dfe89fc 100755 (executable)
@@ -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: