Skip to content

Commit 959752d

Browse files
author
raymond.hettinger
committed
Remove startup firewall message. That is handled by an error dialog
whenever a connection cannot be formed. Also, the Idle version number is already in the About Idle dialog. Now, the startup is clean looking once again. git-svn-id: http://svn.python.org/projects/python/trunk@68985 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 0528bed commit 959752d

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

Lib/idlelib/PyShell.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -973,15 +973,6 @@ def short_title(self):
973973
COPYRIGHT = \
974974
'Type "copyright", "credits" or "license()" for more information.'
975975

976-
firewallmessage = """
977-
****************************************************************
978-
Personal firewall software may warn about the connection IDLE
979-
makes to its subprocess using this computer's internal loopback
980-
interface. This connection is not visible on any external
981-
interface and no data is sent to or received from the Internet.
982-
****************************************************************
983-
"""
984-
985976
def begin(self):
986977
self.resetoutput()
987978
if use_subprocess:
@@ -992,9 +983,8 @@ def begin(self):
992983
return False
993984
else:
994985
nosub = "==== No Subprocess ===="
995-
self.write("Python %s on %s\n%s\n%s\nIDLE %s %s\n" %
996-
(sys.version, sys.platform, self.COPYRIGHT,
997-
self.firewallmessage, idlever.IDLE_VERSION, nosub))
986+
self.write("Python %s on %s\n%s\n%s" %
987+
(sys.version, sys.platform, self.COPYRIGHT, nosub))
998988
self.showprompt()
999989
import Tkinter
1000990
Tkinter._default_root = None # 03Jan04 KBK What's this?

0 commit comments

Comments
 (0)