summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-01-27 00:28:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-01-27 00:28:36 (GMT)
commita2a8e8be8e806e940d731a826302193e94267991 (patch)
treef5400e1f11902ce7b9b154c86c3fc5dcb3930091 /Lib/idlelib
parent39df610571635d05b172aa84e683a837b1e74089 (diff)
downloadcpython-a2a8e8be8e806e940d731a826302193e94267991.zip
cpython-a2a8e8be8e806e940d731a826302193e94267991.tar.gz
cpython-a2a8e8be8e806e940d731a826302193e94267991.tar.bz2
Forward port r68985: Idle startup message.
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 cca91ad..b61297b 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -963,15 +963,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.text.mark_set("iomark", "insert")
self.resetoutput()
@@ -983,9 +974,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?