Issue #21192: Change 'RUN' back to 'RESTART' when running editor file.

This commit is contained in:
Terry Jan Reedy 2015-09-03 21:26:12 -04:00
parent df6b544ff6
commit a43de00b74
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
console.stop_readline() console.stop_readline()
# annotate restart in shell window and mark it # annotate restart in shell window and mark it
console.text.delete("iomark", "end-1c") 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) * '=' halfbar = ((int(console.width) -len(tag) - 4) // 2) * '='
console.write("\n{0} {1} {0}".format(halfbar, tag)) console.write("\n{0} {1} {0}".format(halfbar, tag))
console.text.mark_set("restart", "end-1c") console.text.mark_set("restart", "end-1c")