https://github.com/python/cpython/commit/1a0fbc78136e7750ef4387754aa3cd76cea20cd1 commit: 1a0fbc78136e7750ef4387754aa3cd76cea20cd1 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2025-02-06T03:20:31-05:00 summary:
[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 d83a8a26f5e321b26bec59f5fd47c9c46c16ab12) Co-authored-by: Stan Ulbrych <[email protected]> Co-authored-by: Terry Jan Reedy <[email protected]> files: M Lib/idlelib/pyshell.py diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index e882c6cb3b8d19..98668580d06159 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -1131,8 +1131,7 @@ def ispythonsource(self, filename): def short_title(self): return self.shell_title - COPYRIGHT = \ - 'Type "help", "copyright", "credits" or "license()" for more information.' + SPLASHLINE = 'Enter "help" below or click "Help" above for more information.' def begin(self): self.text.mark_set("iomark", "insert") @@ -1151,7 +1150,7 @@ def begin(self): sys.displayhook = rpc.displayhook self.write("Python %s on %s\n%s\n%s" % - (sys.version, sys.platform, self.COPYRIGHT, nosub)) + (sys.version, sys.platform, self.SPLASHLINE, nosub)) self.text.focus_force() self.showprompt() # User code should use separate default Tk root window _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
