Skip to content

Commit 1a0fbc7

Browse files
miss-islingtonStanFromIrelandterryjreedy
authored
[3.12] gh-86206: Change IDLE splash line (GH-129698) (#129718)
Replace references to boilerplate files available in About IDLE and instead suggest clicking Help menu. (cherry picked from commit d83a8a2) Co-authored-by: Stan Ulbrych <[email protected]> Co-authored-by: Terry Jan Reedy <[email protected]>
1 parent e7fb381 commit 1a0fbc7

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
@@ -1131,8 +1131,7 @@ def ispythonsource(self, filename):
11311131
def short_title(self):
11321132
return self.shell_title
11331133

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

11371136
def begin(self):
11381137
self.text.mark_set("iomark", "insert")
@@ -1151,7 +1150,7 @@ def begin(self):
11511150
sys.displayhook = rpc.displayhook
11521151

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

0 commit comments

Comments
 (0)