https://github.com/python/cpython/commit/d83a8a26f5e321b26bec59f5fd47c9c46c16ab12
commit: d83a8a26f5e321b26bec59f5fd47c9c46c16ab12
branch: main
author: Stan Ulbrych <89152624+stanfromirel...@users.noreply.github.com>
committer: terryjreedy <tjre...@udel.edu>
date: 2025-02-06T07:55:25Z
summary:

gh-86206: Change IDLE splash line (#129698)

Change splash line

Co-authored-by: Terry Jan Reedy <tjre...@udel.edu>

files:
M Lib/idlelib/pyshell.py

diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py
index 66fbbd4a97b7af..295d06e4a5f017 100755
--- a/Lib/idlelib/pyshell.py
+++ b/Lib/idlelib/pyshell.py
@@ -1133,8 +1133,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")
@@ -1153,7 +1152,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 -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to