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
e2124c84
Commit
e2124c84
authored
Jun 24, 2016
by
Jens Timmerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pick better names for variables
parent
c4ef24f6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
setuptools/package_index.py
setuptools/package_index.py
+3
-4
No files found.
setuptools/package_index.py
View file @
e2124c84
...
...
@@ -602,9 +602,8 @@ class PackageIndex(Environment):
continue
if dist in req and (dist.precedence <= SOURCE_DIST or not source):
mylocation = self.download(dist.location, tmpdir)
if os.path.exists(mylocation):
dist._location = mylocation
dist.download_location = self.download(dist.location, tmpdir)
if os.path.exists(dist.download_location):
return dist
if force_scan:
...
...
@@ -632,7 +631,7 @@ class PackageIndex(Environment):
)
else:
self.info("Best match: %s", dist)
return dist.clone(location=dist._location)
return dist.clone(location=dist.
download
_location)
def fetch(self, requirement, tmpdir, force_scan=False, source=False):
"""
Obtain
a
file
suitable
for
fulfilling
`requirement`
...
...
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