[Python-checkins] python/dist/src/Lib/idlelib PyShell.py,1.75,1.76 run.py,1.23,1.24 boolcheck.py,1.2,NONE

kbk@users.sourceforge.net kbk@users.sourceforge.net
Fri, 13 Jun 2003 20:33:22 -0700


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

Modified Files:
	PyShell.py run.py 
Removed Files:
	boolcheck.py 
Log Message:
Remove the 2.2 compatibility module boolcheck.py and related code
M PyShell.py
R boolcheck.py
M run.py


Index: PyShell.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/PyShell.py,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** PyShell.py	14 Jun 2003 03:23:56 -0000	1.75
--- PyShell.py	14 Jun 2003 03:33:20 -0000	1.76
***************
*** 20,26 ****
  import tkMessageBox
  
- # Preserve 2.2 compatibility for Mac OS X:
- import boolcheck
- 
  from EditorWindow import EditorWindow, fixwordbreaks
  from FileList import FileList
--- 20,23 ----

Index: run.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/run.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** run.py	13 Jun 2003 22:03:43 -0000	1.23
--- run.py	14 Jun 2003 03:33:20 -0000	1.24
***************
*** 8,13 ****
  import Queue
  
- import boolcheck
- 
  import CallTips
  import RemoteDebugger
--- 8,11 ----

--- boolcheck.py DELETED ---