Skip to content

Commit 1439f64

Browse files
authored
Merge pull request #313 from pombredanne/patch-1
Clarify DistributionFinder.Context.path type
2 parents 5a4699d + ab1c873 commit 1439f64

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

importlib_metadata/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -618,10 +618,11 @@ def __init__(self, **kwargs):
618618
@property
619619
def path(self):
620620
"""
621-
The path that a distribution finder should search.
621+
The sequence of directory path that a distribution finder
622+
should search.
622623
623-
Typically refers to Python package paths and defaults
624-
to ``sys.path``.
624+
Typically refers to Python installed package paths such as
625+
"site-packages" directories and defaults to ``sys.path``.
625626
"""
626627
return vars(self).get('path', sys.path)
627628

0 commit comments

Comments
 (0)