Commit 85d7807a authored by Neal Norwitz's avatar Neal Norwitz

Remove unnecessary imports

parent a434524b
...@@ -2,7 +2,6 @@ ...@@ -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:
......
...@@ -2,7 +2,6 @@ ...@@ -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:
......
import os import os
import bdb import bdb
import traceback
from Tkinter import * from Tkinter import *
from WindowList import ListedToplevel from WindowList import ListedToplevel
......
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
......
...@@ -323,7 +323,6 @@ def riExec(id, 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
......
# Ideas gleaned from PySol # Ideas gleaned from PySol
import os
from Tkinter import * from Tkinter import *
class ToolTipBase: class ToolTipBase:
......
...@@ -2,10 +2,7 @@ ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment