diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-17 16:49:49 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-20 21:26:23 -0500 |
commit | 20f38687bbcf0e668902d37d51023f1fddc55273 (patch) | |
tree | f26514ab785653562af0c0f7b893cb552e67f984 /docs/pkg_resources.txt | |
parent | bfe286c3a95615a1d927c46cbe3d8ce890bab2b0 (diff) | |
download | external_python_setuptools-20f38687bbcf0e668902d37d51023f1fddc55273.tar.gz external_python_setuptools-20f38687bbcf0e668902d37d51023f1fddc55273.tar.bz2 external_python_setuptools-20f38687bbcf0e668902d37d51023f1fddc55273.zip |
Update docs to match implementation that resource names are rooted at the package. Ref #1635.
Diffstat (limited to 'docs/pkg_resources.txt')
-rw-r--r-- | docs/pkg_resources.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pkg_resources.txt b/docs/pkg_resources.txt index 0c9fb5f2..21aac814 100644 --- a/docs/pkg_resources.txt +++ b/docs/pkg_resources.txt @@ -1132,8 +1132,8 @@ relative to the root of the identified distribution; i.e. its first path segment will be treated as a peer of the top-level modules or packages in the distribution. -Note that resource names must be ``/``-separated paths and cannot be absolute -(i.e. no leading ``/``) or contain relative names like ``".."``. Do *not* use +Note that resource names must be ``/``-separated paths rooted at the package +and cannot contain relative names like ``".."``. Do *not* use ``os.path`` routines to manipulate resource paths, as they are *not* filesystem paths. |