We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e0182 commit d83a8a2Copy full SHA for d83a8a2
Lib/idlelib/pyshell.py
@@ -1133,8 +1133,7 @@ def ispythonsource(self, filename):
1133
def short_title(self):
1134
return self.shell_title
1135
1136
- COPYRIGHT = \
1137
- 'Type "help", "copyright", "credits" or "license()" for more information.'
+ SPLASHLINE = 'Enter "help" below or click "Help" above for more information.'
1138
1139
def begin(self):
1140
self.text.mark_set("iomark", "insert")
@@ -1153,7 +1152,7 @@ def begin(self):
1153
1152
sys.displayhook = rpc.displayhook
1154
1155
self.write("Python %s on %s\n%s\n%s" %
1156
- (sys.version, sys.platform, self.COPYRIGHT, nosub))
+ (sys.version, sys.platform, self.SPLASHLINE, nosub))
1157
self.text.focus_force()
1158
self.showprompt()
1159
# User code should use separate default Tk root window
0 commit comments