[Python-checkins] python/dist/src/Tools/idle CallTipWindow.py,1.4,1.5 CallTips.py,1.12,1.13 Debugger.py,1.16,1.17 GrepDialog.py,1.4,1.5 RemoteInterp.py,1.2,1.3 ToolTip.py,1.2,1.3 eventparse.py,1.2,1.3

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 12 Sep 2002 13:30:00 -0700


Update of /cvsroot/python/python/dist/src/Tools/idle
In directory usw-pr-cvs1:/tmp/cvs-serv21313

Modified Files:
	CallTipWindow.py CallTips.py Debugger.py GrepDialog.py 
	RemoteInterp.py ToolTip.py eventparse.py 
Log Message:
Remove unnecessary imports

Index: CallTipWindow.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/CallTipWindow.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** CallTipWindow.py	22 Apr 2002 18:43:49 -0000	1.4
--- CallTipWindow.py	12 Sep 2002 20:29:55 -0000	1.5
***************
*** 3,7 ****
  
  # Used by the CallTips IDLE extension.
- import os
  from Tkinter import *
  
--- 3,6 ----

Index: CallTips.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/CallTips.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** CallTips.py	11 Sep 2002 20:36:01 -0000	1.12
--- CallTips.py	12 Sep 2002 20:29:55 -0000	1.13
***************
*** 3,7 ****
  
  import string
- import sys
  import types
  
--- 3,6 ----

Index: Debugger.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/Debugger.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** Debugger.py	25 Feb 2002 23:11:03 -0000	1.16
--- Debugger.py	12 Sep 2002 20:29:55 -0000	1.17
***************
*** 1,5 ****
  import os
  import bdb
- import traceback
  from Tkinter import *
  from WindowList import ListedToplevel
--- 1,4 ----

Index: GrepDialog.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/GrepDialog.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** GrepDialog.py	11 Sep 2002 20:36:01 -0000	1.4
--- GrepDialog.py	12 Sep 2002 20:29:56 -0000	1.5
***************
*** 1,8 ****
  import os
- import re
  import fnmatch
  import sys
  from Tkinter import *
- import tkMessageBox
  import SearchEngine
  from SearchDialogBase import SearchDialogBase
--- 1,6 ----

Index: RemoteInterp.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/RemoteInterp.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RemoteInterp.py	17 Jan 2001 08:48:39 -0000	1.2
--- RemoteInterp.py	12 Sep 2002 20:29:56 -0000	1.3
***************
*** 324,328 ****
  
  if __name__ == "__main__":
-     import sys
      import getopt
  
--- 324,327 ----

Index: ToolTip.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/ToolTip.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ToolTip.py	17 Jan 2001 08:48:39 -0000	1.2
--- ToolTip.py	12 Sep 2002 20:29:56 -0000	1.3
***************
*** 1,5 ****
  # Ideas gleaned from PySol
  
- import os
  from Tkinter import *
  
--- 1,4 ----

Index: eventparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/idle/eventparse.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** eventparse.py	11 Sep 2002 20:36:01 -0000	1.2
--- eventparse.py	12 Sep 2002 20:29:56 -0000	1.3
***************
*** 3,10 ****
  """Parse event definitions out of comments in source files."""
  
- import re
  import sys
- import os
- import getopt
  import glob
  import fileinput
--- 3,7 ----