diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-20 17:22:06 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-20 17:22:06 (GMT) |
commit | 812b24842c5e08828f2ae536c967dd891a6a4148 (patch) | |
tree | b128e62347069d28e3c08e422701fb4a529a4652 /Lib/idlelib | |
parent | 6d9e92396f3603a45b5f2767f174d77f51a77536 (diff) | |
parent | 4379d15d4c43db3d92658826906ed6326487b333 (diff) | |
download | cpython-812b24842c5e08828f2ae536c967dd891a6a4148.zip cpython-812b24842c5e08828f2ae536c967dd891a6a4148.tar.gz cpython-812b24842c5e08828f2ae536c967dd891a6a4148.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Lib/idlelib')
-rwxr-xr-x | Lib/idlelib/PyShell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 058dfb9..1bcc9b6 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -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: |