[Idle-dev] CVS: idle PyShell.py,1.48,1.49

Tony Lownds tonylownds@users.sourceforge.net
Tue, 24 Dec 2002 09:21:46 -0800


Update of /cvsroot/idlefork/idle
In directory sc8-pr-cvs1:/tmp/cvs-serv14652

Modified Files:
	PyShell.py 
Log Message:
Move boolcheck before import of other IDLE modules

Index: PyShell.py
===================================================================
RCS file: /cvsroot/idlefork/idle/PyShell.py,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -r1.48 -r1.49
*** PyShell.py	24 Dec 2002 06:36:19 -0000	1.48
--- PyShell.py	24 Dec 2002 17:21:43 -0000	1.49
***************
*** 19,22 ****
--- 19,25 ----
  import tkMessageBox
  
+ # Preserve 2.2 compatibility for Mac OS X:
+ import boolcheck
+ 
  from EditorWindow import EditorWindow, fixwordbreaks
  from FileList import FileList
***************
*** 29,35 ****
  import rpc
  import RemoteDebugger
- 
- # Preserve 2.2 compatibility for Mac OS X:
- import boolcheck
  
  IDENTCHARS = string.ascii_letters + string.digits + "_"
--- 32,35 ----