mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Remove unnecessary imports
This commit is contained in:
parent
4ef1103b71
commit
a59ab05fda
7 changed files with 0 additions and 10 deletions
|
@ -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 @@
|
||||||
# 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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# Ideas gleaned from PySol
|
# Ideas gleaned from PySol
|
||||||
|
|
||||||
import os
|
|
||||||
from Tkinter import *
|
from Tkinter import *
|
||||||
|
|
||||||
class ToolTipBase:
|
class ToolTipBase:
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue