[Python-checkins] python/dist/src/Lib/idlelib NEWS.txt,1.22,1.23 PyShell.py,1.80,1.81 README.txt,1.8,1.9

kbk@users.sourceforge.net kbk@users.sourceforge.net
Sat, 26 Jul 2003 20:24:21 -0700


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv3572

Modified Files:
	NEWS.txt PyShell.py README.txt 
Log Message:
Added a banner to the shell startup message discussing possible
warnings from personal firewall software.  Added the same text
to README.txt, updated NEWS.txt for release.

M NEWS.txt
M PyShell.py
M README.txt


Index: NEWS.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/NEWS.txt,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** NEWS.txt	23 Jul 2003 15:42:14 -0000	1.22
--- NEWS.txt	27 Jul 2003 03:24:18 -0000	1.23
***************
*** 1,2 ****
--- 1,11 ----
+ What's New in IDLE 1.0?
+ ===================================
+ 
+ *Release date: 29-Jul-2003*
+ 
+ - Added a banner to the shell discussimg warnings possibly raised by personal
+   firewall software.  Added same comment to README.txt.
+ 
+ 
  What's New in IDLE 1.0 release candidate 2?
  ===================================
***************
*** 5,8 ****
--- 14,18 ----
  
  - Calltip error when docstring was None  Python Bug 775541
+ 
  
  What's New in IDLE 1.0 release candidate 1?

Index: PyShell.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/PyShell.py,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -d -r1.80 -r1.81
*** PyShell.py	9 Jul 2003 18:48:24 -0000	1.80
--- PyShell.py	27 Jul 2003 03:24:18 -0000	1.81
***************
*** 865,868 ****
--- 865,877 ----
            '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()
***************
*** 871,877 ****
          else:
              nosub = "==== No Subprocess ===="
!         self.write("Python %s on %s\n%s\nIDLE %s      %s\n" %
                     (sys.version, sys.platform, self.COPYRIGHT,
!                     idlever.IDLE_VERSION, nosub))
          self.showprompt()
          import Tkinter
--- 880,886 ----
          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.showprompt()
          import Tkinter

Index: README.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/README.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** README.txt	12 Jun 2003 03:51:27 -0000	1.8
--- README.txt	27 Jul 2003 03:24:19 -0000	1.9
***************
*** 22,25 ****
--- 22,30 ----
  testing a module two or three steps down the import chain.
  
+ (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.)
+ 
  It is possible to interrupt tightly looping user code, even on Windows.