summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-01-26 23:29:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-01-26 23:29:09 (GMT)
commitbf3f69ee85d3c497bfdeae3ac3338c1409ca454c (patch)
treec1732e09a6752f9083079cdc6567c98565c70666 /Lib/idlelib
parentc028abf3cd59086eb2665446a58aa462af8c2abd (diff)
downloadcpython-bf3f69ee85d3c497bfdeae3ac3338c1409ca454c.zip
cpython-bf3f69ee85d3c497bfdeae3ac3338c1409ca454c.tar.gz
cpython-bf3f69ee85d3c497bfdeae3ac3338c1409ca454c.tar.bz2
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.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/PyShell.py14
1 files changed, 2 insertions, 12 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index c1b98a0..7fec7e9 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -973,15 +973,6 @@ class PyShell(OutputWindow):
COPYRIGHT = \
'Type "copyright", "credits" or "license()" for more information.'
- firewallmessage = """
- ****************************************************************
- Personal firewall software may warn about the connection IDLE
- makes to its subprocess using this computer's internal loopback
- interface. This connection is not visible on any external
- interface and no data is sent to or received from the Internet.
- ****************************************************************
- """
-
def begin(self):
self.resetoutput()
if use_subprocess:
@@ -992,9 +983,8 @@ class PyShell(OutputWindow):
return False
else:
nosub = "==== No Subprocess ===="
- self.write("Python %s on %s\n%s\n%s\nIDLE %s %s\n" %
- (sys.version, sys.platform, self.COPYRIGHT,
- self.firewallmessage, idlever.IDLE_VERSION, nosub))
+ self.write("Python %s on %s\n%s\n%s" %
+ (sys.version, sys.platform, self.COPYRIGHT, nosub))
self.showprompt()
import Tkinter
Tkinter._default_root = None # 03Jan04 KBK What's this?