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
02d893cf
Commit
02d893cf
authored
Aug 02, 2001
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #444359: Remove unused imports.
parent
d429ab6d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
2 additions
and
9 deletions
+2
-9
Lib/ConfigParser.py
Lib/ConfigParser.py
+0
-1
Lib/Cookie.py
Lib/Cookie.py
+1
-1
Lib/codecs.py
Lib/codecs.py
+1
-1
Lib/multifile.py
Lib/multifile.py
+0
-2
Lib/pipes.py
Lib/pipes.py
+0
-1
Lib/pyclbr.py
Lib/pyclbr.py
+0
-1
Lib/sgmllib.py
Lib/sgmllib.py
+0
-1
Lib/urllib2.py
Lib/urllib2.py
+0
-1
No files found.
Lib/ConfigParser.py
View file @
02d893cf
...
...
@@ -85,7 +85,6 @@ ConfigParser -- responsible for for parsing a list of
write the configuration state in .ini format
"""
import
sys
import
string
import
re
...
...
Lib/Cookie.py
View file @
02d893cf
...
...
@@ -215,7 +215,7 @@ Finis.
#
# Import our required modules
#
import
string
,
sys
import
string
from
UserDict
import
UserDict
try
:
...
...
Lib/codecs.py
View file @
02d893cf
...
...
@@ -7,7 +7,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
"""
#"
import
struct
,
types
,
__builtin__
import
struct
,
__builtin__
### Registry and builtin stateless codec functions
...
...
Lib/multifile.py
View file @
02d893cf
...
...
@@ -27,8 +27,6 @@ current file part. This may be useful when using MultiFile with a non-
seekable stream object.
"""
import
sys
__all__
=
[
"MultiFile"
,
"Error"
]
class
Error
(
Exception
):
...
...
Lib/pipes.py
View file @
02d893cf
...
...
@@ -59,7 +59,6 @@ For an example, see the function test() at the end of the file.
"""
# '
import
sys
import
re
import
os
...
...
Lib/pyclbr.py
View file @
02d893cf
...
...
@@ -53,7 +53,6 @@ PACKAGE RELATED BUGS
exists coded in Python in the freeze package.)
"""
import
os
import
sys
import
imp
import
re
...
...
Lib/sgmllib.py
View file @
02d893cf
...
...
@@ -10,7 +10,6 @@
import
re
import
string
__all__
=
[
"SGMLParser"
]
...
...
Lib/urllib2.py
View file @
02d893cf
...
...
@@ -88,7 +88,6 @@ f = urllib2.urlopen('http://www.python.org/')
# check digest against correct (i.e. non-apache) implementation
import
socket
import
UserDict
import
httplib
import
re
import
base64
...
...
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