[Python-checkins] python/dist/src/Lib/idlelib PyShell.py,1.84,1.85

kbk at users.sourceforge.net kbk at users.sourceforge.net
Wed Jan 21 17:10:03 EST 2004


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

Modified Files:
	PyShell.py 
Log Message:
There was an error in the Tk error dialog fix at Rev 1.84 which caused starting
w/o the subprocess to fail.  Check in a fix to IDLE and IDLEfork.

M PyShell.py

Backport candidate, combine with previous.


Index: PyShell.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/PyShell.py,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** PyShell.py	21 Jan 2004 18:54:30 -0000	1.84
--- PyShell.py	21 Jan 2004 22:10:01 -0000	1.85
***************
*** 927,931 ****
              if not client:
                  self.close()
!                 return None
          else:
              nosub = "==== No Subprocess ===="
--- 927,931 ----
              if not client:
                  self.close()
!                 return False
          else:
              nosub = "==== No Subprocess ===="
***************
*** 936,940 ****
          import Tkinter
          Tkinter._default_root = None # 03Jan04 KBK What's this?
!         return client
  
      def readline(self):
--- 936,940 ----
          import Tkinter
          Tkinter._default_root = None # 03Jan04 KBK What's this?
!         return True
  
      def readline(self):





More information about the Python-checkins mailing list