Remove unnecessary imports

This commit is contained in:
Neal Norwitz 2002-09-12 20:29:56 +00:00
parent 4ef1103b71
commit a59ab05fda
7 changed files with 0 additions and 10 deletions

View File

@ -2,7 +2,6 @@
# After ToolTip.py, which uses ideas gleaned from PySol
# Used by the CallTips IDLE extension.
import os
from Tkinter import *
class CallTip:

View File

@ -2,7 +2,6 @@
# displays parameter information as you open parens.
import string
import sys
import types
class CallTips:

View File

@ -1,6 +1,5 @@
import os
import bdb
import traceback
from Tkinter import *
from WindowList import ListedToplevel

View File

@ -1,9 +1,7 @@
import os
import re
import fnmatch
import sys
from Tkinter import *
import tkMessageBox
import SearchEngine
from SearchDialogBase import SearchDialogBase

View File

@ -323,7 +323,6 @@ def riExec(id, file):
cli.run()
if __name__ == "__main__":
import sys
import getopt
SERVER = 1

View File

@ -1,6 +1,5 @@
# Ideas gleaned from PySol
import os
from Tkinter import *
class ToolTipBase:

View File

@ -2,10 +2,7 @@
"""Parse event definitions out of comments in source files."""
import re
import sys
import os
import getopt
import glob
import fileinput
import pprint