[Idle-dev] CVS: idle PyShell.py,1.80,1.81
Kurt B. Kaiser
kbk at users.sourceforge.net
Wed Jan 21 16:44:20 EST 2004
Update of /cvsroot/idlefork/idle
In directory sc8-pr-cvs1:/tmp/cvs-serv22532
Modified Files:
PyShell.py
Log Message:
An error in Rev 1.80 was causing starting w/o subprocess to fail.
M PyShell.py
Index: PyShell.py
===================================================================
RCS file: /cvsroot/idlefork/idle/PyShell.py,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -r1.80 -r1.81
*** PyShell.py 5 Jan 2004 04:58:51 -0000 1.80
--- PyShell.py 21 Jan 2004 21:44:18 -0000 1.81
***************
*** 921,925 ****
if not client:
self.close()
! return None
else:
nosub = "==== No Subprocess ===="
--- 921,925 ----
if not client:
self.close()
! return False
else:
nosub = "==== No Subprocess ===="
***************
*** 930,934 ****
import Tkinter
Tkinter._default_root = None # 03Jan04 KBK What's this?
! return client
def readline(self):
--- 930,934 ----
import Tkinter
Tkinter._default_root = None # 03Jan04 KBK What's this?
! return True
def readline(self):
More information about the IDLE-dev
mailing list