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 # After ToolTip.py, which uses ideas gleaned from PySol
# Used by the CallTips IDLE extension. # Used by the CallTips IDLE extension.
import os
from Tkinter import * from Tkinter import *
class CallTip: class CallTip:

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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