From: Terry Jan Reedy Date: Fri, 4 Sep 2015 01:26:12 +0000 (-0400) Subject: Issue #21192: Change 'RUN' back to 'RESTART' when running editor file. X-Git-Tag: v3.5.0rc3~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a43de00b74e458a2dd965a82c32b879c5084a490;p=python Issue #21192: Change 'RUN' back to 'RESTART' when running editor file. --- diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 3869d45eaf..5854cf91a4 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -487,7 +487,7 @@ class ModifiedInterpreter(InteractiveInterpreter): console.stop_readline() # annotate restart in shell window and mark it console.text.delete("iomark", "end-1c") - tag = 'RUN ' + filename if filename else 'RESTART Shell' + tag = 'RESTART: ' + (filename if filename else 'Shell') halfbar = ((int(console.width) -len(tag) - 4) // 2) * '=' console.write("\n{0} {1} {0}".format(halfbar, tag)) console.text.mark_set("restart", "end-1c")