Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
1746f3ca
Commit
1746f3ca
authored
Apr 25, 2016
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused imports.
parent
905adfca
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
5 deletions
+3
-5
command/config.py
command/config.py
+1
-1
command/register.py
command/register.py
+1
-1
command/sdist.py
command/sdist.py
+0
-1
extension.py
extension.py
+0
-1
text_file.py
text_file.py
+1
-1
No files found.
command/config.py
View file @
1746f3ca
...
...
@@ -9,7 +9,7 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
import
sys
,
os
,
re
import
os
,
re
from
distutils.core
import
Command
from
distutils.errors
import
DistutilsExecError
...
...
command/register.py
View file @
1746f3ca
...
...
@@ -5,7 +5,7 @@ Implements the Distutils 'register' command (register with the repository).
# created 2002/10/21, Richard Jones
import
os
,
string
,
getpass
import
getpass
import
io
import
urllib.parse
,
urllib
.
request
from
warnings
import
warn
...
...
command/sdist.py
View file @
1746f3ca
...
...
@@ -3,7 +3,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
import
os
import
string
import
sys
from
types
import
*
from
glob
import
glob
...
...
extension.py
View file @
1746f3ca
...
...
@@ -4,7 +4,6 @@ Provides the Extension class, used to describe C/C++ extension
modules in setup scripts."""
import
os
import
sys
import
warnings
# This class is really only used by the "build_ext" command, so it might
...
...
text_file.py
View file @
1746f3ca
...
...
@@ -4,7 +4,7 @@ provides the TextFile class, which gives an interface to text files
that (optionally) takes care of stripping comments, ignoring blank
lines, and joining lines with backslashes."""
import
sys
,
os
,
io
import
sys
,
io
class
TextFile
:
...
...
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