Skip to content

Commit d83a8a2

Browse files
gh-86206: Change IDLE splash line (#129698)
Change splash line Co-authored-by: Terry Jan Reedy <[email protected]>
1 parent 76e0182 commit d83a8a2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/idlelib/pyshell.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,8 +1133,7 @@ def ispythonsource(self, filename):
11331133
def short_title(self):
11341134
return self.shell_title
11351135

1136-
COPYRIGHT = \
1137-
'Type "help", "copyright", "credits" or "license()" for more information.'
1136+
SPLASHLINE = 'Enter "help" below or click "Help" above for more information.'
11381137

11391138
def begin(self):
11401139
self.text.mark_set("iomark", "insert")
@@ -1153,7 +1152,7 @@ def begin(self):
11531152
sys.displayhook = rpc.displayhook
11541153

11551154
self.write("Python %s on %s\n%s\n%s" %
1156-
(sys.version, sys.platform, self.COPYRIGHT, nosub))
1155+
(sys.version, sys.platform, self.SPLASHLINE, nosub))
11571156
self.text.focus_force()
11581157
self.showprompt()
11591158
# User code should use separate default Tk root window

0 commit comments

Comments
 (0)