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
657501dd
Commit
657501dd
authored
Feb 15, 2014
by
Arfrever Frehtes Taifersar Arahesis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean some imports.
parent
962664bb
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
10 deletions
+15
-10
setuptools/command/install_egg_info.py
setuptools/command/install_egg_info.py
+1
-1
setuptools/svn_utils.py
setuptools/svn_utils.py
+0
-1
setuptools/tests/test_bdist_egg.py
setuptools/tests/test_bdist_egg.py
+5
-2
setuptools/tests/test_build_ext.py
setuptools/tests/test_build_ext.py
+1
-2
setuptools/tests/test_develop.py
setuptools/tests/test_develop.py
+4
-2
setuptools/tests/test_test.py
setuptools/tests/test_test.py
+4
-2
No files found.
setuptools/command/install_egg_info.py
View file @
657501dd
from
setuptools
import
Command
from
setuptools.archive_util
import
unpack_archive
from
distutils
import
log
,
dir_util
import
os
,
shutil
,
pkg_resources
import
os
,
pkg_resources
class
install_egg_info
(
Command
):
"""Install an .egg-info directory for the package"""
...
...
setuptools/svn_utils.py
View file @
657501dd
...
...
@@ -4,7 +4,6 @@ import sys
from
distutils
import
log
import
xml.dom.pulldom
import
shlex
import
shutil
import
locale
import
codecs
import
unicodedata
...
...
setuptools/tests/test_bdist_egg.py
View file @
657501dd
"""develop tests
"""
import
os
import
re
import
shutil
import
site
import
sys
import
os
,
re
,
shutil
,
tempfile
,
unittest
import
tempfile
import
site
import
unittest
from
distutils.errors
import
DistutilsError
from
setuptools.compat
import
StringIO
...
...
setuptools/tests/test_build_ext.py
View file @
657501dd
"""build_ext tests
"""
import
os
,
shutil
,
tempfile
,
unittest
import
unittest
from
distutils.command.build_ext
import
build_ext
as
distutils_build_ext
from
setuptools.command.build_ext
import
build_ext
from
setuptools.dist
import
Distribution
...
...
@@ -17,4 +17,3 @@ class TestBuildExtTest(unittest.TestCase):
res
=
cmd
.
get_ext_filename
(
'foo'
)
wanted
=
distutils_build_ext
.
get_ext_filename
(
cmd
,
'foo'
)
assert
res
==
wanted
setuptools/tests/test_develop.py
View file @
657501dd
"""develop tests
"""
import
os
import
shutil
import
site
import
sys
import
os
,
shutil
,
tempfile
,
unittest
import
tempfile
import
site
import
unittest
from
distutils.errors
import
DistutilsError
from
setuptools.command.develop
import
develop
...
...
setuptools/tests/test_test.py
View file @
657501dd
...
...
@@ -2,10 +2,12 @@
"""develop tests
"""
import
os
import
shutil
import
site
import
sys
import
os
,
shutil
,
tempfile
,
unittest
import
tempfile
import
site
import
unittest
from
distutils.errors
import
DistutilsError
from
setuptools.compat
import
StringIO
...
...
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