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
274271d1
Commit
274271d1
authored
Jun 28, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused imports (closes #12432)
A patch from Vincent Legoll.
parent
e4a51e65
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2 additions
and
6 deletions
+2
-6
Lib/binhex.py
Lib/binhex.py
+0
-1
Lib/cgitb.py
Lib/cgitb.py
+0
-1
Lib/contextlib.py
Lib/contextlib.py
+0
-1
Lib/glob.py
Lib/glob.py
+1
-0
Lib/inspect.py
Lib/inspect.py
+0
-1
Lib/textwrap.py
Lib/textwrap.py
+1
-1
Lib/turtle.py
Lib/turtle.py
+0
-1
No files found.
Lib/binhex.py
View file @
274271d1
...
...
@@ -23,7 +23,6 @@ hexbin(inputfilename, outputfilename)
#
import
io
import
os
import
sys
import
struct
import
binascii
...
...
Lib/cgitb.py
View file @
274271d1
...
...
@@ -31,7 +31,6 @@ import tempfile
import
time
import
tokenize
import
traceback
import
types
def
reset
():
"""Return a string that resets the CGI and browser to a known state."""
...
...
Lib/contextlib.py
View file @
274271d1
...
...
@@ -2,7 +2,6 @@
import
sys
from
functools
import
wraps
from
warnings
import
warn
__all__
=
[
"contextmanager"
,
"closing"
,
"ContextDecorator"
]
...
...
Lib/glob.py
View file @
274271d1
"""Filename globbing utility."""
import
sys
import
os
import
re
import
fnmatch
...
...
Lib/inspect.py
View file @
274271d1
...
...
@@ -33,7 +33,6 @@ import sys
import
os
import
types
import
itertools
import
string
import
re
import
imp
import
tokenize
...
...
Lib/textwrap.py
View file @
274271d1
...
...
@@ -7,7 +7,7 @@
__revision__
=
"$Id$"
import
string
,
re
import
re
__all__
=
[
'TextWrapper'
,
'wrap'
,
'fill'
,
'dedent'
]
...
...
Lib/turtle.py
View file @
274271d1
...
...
@@ -108,7 +108,6 @@ import tkinter as TK
import
types
import
math
import
time
import
os
import
inspect
from
os.path
import
isfile
,
split
,
join
...
...
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