Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
85d7807a
Commit
85d7807a
authored
Sep 12, 2002
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary imports
parent
a434524b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
10 deletions
+0
-10
Tools/idle/CallTipWindow.py
Tools/idle/CallTipWindow.py
+0
-1
Tools/idle/CallTips.py
Tools/idle/CallTips.py
+0
-1
Tools/idle/Debugger.py
Tools/idle/Debugger.py
+0
-1
Tools/idle/GrepDialog.py
Tools/idle/GrepDialog.py
+0
-2
Tools/idle/RemoteInterp.py
Tools/idle/RemoteInterp.py
+0
-1
Tools/idle/ToolTip.py
Tools/idle/ToolTip.py
+0
-1
Tools/idle/eventparse.py
Tools/idle/eventparse.py
+0
-3
No files found.
Tools/idle/CallTipWindow.py
View file @
85d7807a
...
@@ -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
:
...
...
Tools/idle/CallTips.py
View file @
85d7807a
...
@@ -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
:
...
...
Tools/idle/Debugger.py
View file @
85d7807a
import
os
import
os
import
bdb
import
bdb
import
traceback
from
Tkinter
import
*
from
Tkinter
import
*
from
WindowList
import
ListedToplevel
from
WindowList
import
ListedToplevel
...
...
Tools/idle/GrepDialog.py
View file @
85d7807a
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
...
...
Tools/idle/RemoteInterp.py
View file @
85d7807a
...
@@ -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
...
...
Tools/idle/ToolTip.py
View file @
85d7807a
# Ideas gleaned from PySol
# Ideas gleaned from PySol
import
os
from
Tkinter
import
*
from
Tkinter
import
*
class
ToolTipBase
:
class
ToolTipBase
:
...
...
Tools/idle/eventparse.py
View file @
85d7807a
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment