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
c3981d56
Commit
c3981d56
authored
Feb 23, 2008
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #2167 from calvin: Remove unused imports
parent
36bf11e1
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
9 additions
and
17 deletions
+9
-17
bcppcompiler.py
bcppcompiler.py
+1
-1
command/bdist.py
command/bdist.py
+1
-1
command/bdist_dumb.py
command/bdist_dumb.py
+1
-1
command/bdist_msi.py
command/bdist_msi.py
+1
-1
command/bdist_rpm.py
command/bdist_rpm.py
+0
-1
command/build_py.py
command/build_py.py
+1
-1
command/build_scripts.py
command/build_scripts.py
+1
-1
command/install.py
command/install.py
+0
-1
command/install_headers.py
command/install_headers.py
+0
-1
command/install_lib.py
command/install_lib.py
+1
-1
command/register.py
command/register.py
+1
-1
command/sdist.py
command/sdist.py
+1
-1
filelist.py
filelist.py
+0
-1
tests/test_dist.py
tests/test_dist.py
+0
-2
tests/test_sysconfig.py
tests/test_sysconfig.py
+0
-1
unixccompiler.py
unixccompiler.py
+0
-1
No files found.
bcppcompiler.py
View file @
c3981d56
...
...
@@ -16,7 +16,7 @@ for the Borland C++ compiler.
__revision__
=
"$Id$"
import
sys
,
os
import
os
from
distutils.errors
import
\
DistutilsExecError
,
DistutilsPlatformError
,
\
CompileError
,
LibError
,
LinkError
,
UnknownFileError
...
...
command/bdist.py
View file @
c3981d56
...
...
@@ -7,7 +7,7 @@ distribution)."""
__revision__
=
"$Id$"
import
os
,
string
import
os
from
types
import
*
from
distutils.core
import
Command
from
distutils.errors
import
*
...
...
command/bdist_dumb.py
View file @
c3981d56
...
...
@@ -11,7 +11,7 @@ __revision__ = "$Id$"
import
os
from
distutils.core
import
Command
from
distutils.util
import
get_platform
from
distutils.dir_util
import
create_tree
,
remove_tree
,
ensure_relative
from
distutils.dir_util
import
remove_tree
,
ensure_relative
from
distutils.errors
import
*
from
distutils.sysconfig
import
get_python_version
from
distutils
import
log
...
...
command/bdist_msi.py
View file @
c3981d56
...
...
@@ -7,7 +7,7 @@
Implements the bdist_msi command.
"""
import
sys
,
os
,
string
import
sys
,
os
from
distutils.core
import
Command
from
distutils.util
import
get_platform
from
distutils.dir_util
import
remove_tree
...
...
command/bdist_rpm.py
View file @
c3981d56
...
...
@@ -8,7 +8,6 @@ distributions)."""
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
glob
from
types
import
*
from
distutils.core
import
Command
from
distutils.debug
import
DEBUG
...
...
command/build_py.py
View file @
c3981d56
...
...
@@ -6,7 +6,7 @@ Implements the Distutils 'build_py' command."""
__revision__
=
"$Id$"
import
s
ys
,
s
tring
,
os
import
string
,
os
from
types
import
*
from
glob
import
glob
...
...
command/build_scripts.py
View file @
c3981d56
...
...
@@ -6,7 +6,7 @@ Implements the Distutils 'build_scripts' command."""
__revision__
=
"$Id$"
import
sys
,
os
,
re
import
os
,
re
from
stat
import
ST_MODE
from
distutils
import
sysconfig
from
distutils.core
import
Command
...
...
command/install.py
View file @
c3981d56
...
...
@@ -17,7 +17,6 @@ from distutils.errors import DistutilsPlatformError
from
distutils.file_util
import
write_file
from
distutils.util
import
convert_path
,
subst_vars
,
change_root
from
distutils.errors
import
DistutilsOptionError
from
glob
import
glob
if
sys
.
version
<
"2.2"
:
WINDOWS_SCHEME
=
{
...
...
command/install_headers.py
View file @
c3981d56
...
...
@@ -7,7 +7,6 @@ files to the Python include directory."""
__revision__
=
"$Id$"
import
os
from
distutils.core
import
Command
...
...
command/install_lib.py
View file @
c3981d56
...
...
@@ -2,7 +2,7 @@
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
os
from
types
import
IntType
from
distutils.core
import
Command
from
distutils.errors
import
DistutilsOptionError
...
...
command/register.py
View file @
c3981d56
...
...
@@ -7,7 +7,7 @@ Implements the Distutils 'register' command (register with the repository).
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
urllib2
,
getpass
,
urlparse
import
os
,
string
,
urllib2
,
getpass
,
urlparse
import
StringIO
,
ConfigParser
from
distutils.core
import
Command
...
...
command/sdist.py
View file @
c3981d56
...
...
@@ -6,7 +6,7 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
os
,
string
from
types
import
*
from
glob
import
glob
from
distutils.core
import
Command
...
...
filelist.py
View file @
c3981d56
...
...
@@ -11,7 +11,6 @@ __revision__ = "$Id$"
import
os
,
string
,
re
import
fnmatch
from
types
import
*
from
glob
import
glob
from
distutils.util
import
convert_path
from
distutils.errors
import
DistutilsTemplateError
,
DistutilsInternalError
from
distutils
import
log
...
...
tests/test_dist.py
View file @
c3981d56
...
...
@@ -3,10 +3,8 @@
import
distutils.cmd
import
distutils.dist
import
os
import
shutil
import
StringIO
import
sys
import
tempfile
import
unittest
from
test.test_support
import
TESTFN
...
...
tests/test_sysconfig.py
View file @
c3981d56
...
...
@@ -2,7 +2,6 @@
from
distutils
import
sysconfig
import
os
import
sys
import
unittest
from
test.test_support
import
TESTFN
...
...
unixccompiler.py
View file @
c3981d56
...
...
@@ -17,7 +17,6 @@ __revision__ = "$Id$"
import
os
,
sys
from
types
import
StringType
,
NoneType
from
copy
import
copy
from
distutils
import
sysconfig
from
distutils.dep_util
import
newer
...
...
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