]> granicus.if.org Git - python/commitdiff
Forward port r68985: Idle startup message.
authorRaymond Hettinger <python@rcn.com>
Tue, 27 Jan 2009 00:28:36 +0000 (00:28 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 27 Jan 2009 00:28:36 +0000 (00:28 +0000)
Lib/idlelib/PyShell.py

index cca91ad0eb04b8ebdc37f983c28720a741dae0bc..b61297ba504f9b7f611a16bd9980176e7d6d738e 100644 (file)
@@ -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?