From 815ab140302a2f7a541d1bbda650875bd47f8ea2 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 20 Nov 2015 12:21:40 -0500 Subject: [PATCH] Make it slightly clearer that IDLE close message is referring to user program, not to IDLE itself. --- Lib/idlelib/PyShell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index a6f24485e7c0..ea0d7de9ef99 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: -- 2.47.3