8000 gh-86206: Change IDLE splash line by StanFromIreland · Pull Request #129698 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-86206: Change IDLE splash line #1 8000 29698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Lib/idlelib/pyshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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
Expand Down
Loading
0