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
6f10cff4
Commit
6f10cff4
authored
Sep 09, 2017
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract function for resolving the dist factory for a path item entry
parent
9ff9a0d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
pkg_resources/__init__.py
pkg_resources/__init__.py
+16
-12
No files found.
pkg_resources/__init__.py
View file @
6f10cff4
...
@@ -2035,22 +2035,26 @@ def find_on_path(importer, path_item, only=False):
...
@@ -2035,22 +2035,26 @@ def find_on_path(importer, path_item, only=False):
# scan for .egg and .egg-info in directory
# scan for .egg and .egg-info in directory
path_item_entries = _by_version_descending(entries)
path_item_entries = _by_version_descending(entries)
for entry in path_item_entries:
for entry in path_item_entries:
lower = entry.lower()
fullpath = os.path.join(path_item, entry)
fullpath = os.path.join(path_item, entry)
is_meta = any(map(lower.endswith, ('.egg-info', '.dist-info')))
factory = dist_factory(path_item, entry, only)
dists = (
for dist in factory(fullpath):
distributions_from_metadata(fullpath)
if is_meta else
find_distributions(fullpath)
if not only and _is_egg_path(entry) else
resolve_egg_link(fullpath)
if not only and lower.endswith('.egg-link') else
NoDists()(fullpath)
)
for dist in dists:
yield dist
yield dist
def dist_factory(path_item, entry, only):
lower = entry.lower()
is_meta = any(map(lower.endswith, ('.egg-info', '.dist-info')))
return (
distributions_from_metadata
if is_meta else
find_distributions
if not only and _is_egg_path(entry) else
resolve_egg_link
if not only and lower.endswith('.egg-link') else
NoDists()
)
class NoDists:
class NoDists:
"""
"""
>>>
bool
(
NoDists
())
>>>
bool
(
NoDists
())
...
...
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