diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-20 17:22:18 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-20 17:22:18 (GMT) |
commit | b74a707cbd3f2efbb899fe67ee63402433ed3d8e (patch) | |
tree | c62f02325ceecaac09117f2397daab579425b2b5 /Lib/idlelib | |
parent | 9e788af7cc679ba7bd0142026b0ce5e3d96907a6 (diff) | |
parent | 812b24842c5e08828f2ae536c967dd891a6a4148 (diff) | |
download | cpython-b74a707cbd3f2efbb899fe67ee63402433ed3d8e.zip cpython-b74a707cbd3f2efbb899fe67ee63402433ed3d8e.tar.gz cpython-b74a707cbd3f2efbb899fe67ee63402433ed3d8e.tar.bz2 |
Merge with 3.5
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: |