diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-11 23:33:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 23:33:42 -0500 |
commit | 1b03e7a3d35cf22b0561b44a6abd81d921d550e9 (patch) | |
tree | 7da247e44aa0343d541a03622dd0184e758252c7 /docs | |
parent | 0c54730becb4f7d51d5a444b0f8a9aa9ee18e19b (diff) | |
parent | 98b7bab4d235e982526794bcec90827ac300f5bc (diff) | |
download | external_python_setuptools-1b03e7a3d35cf22b0561b44a6abd81d921d550e9.tar.gz external_python_setuptools-1b03e7a3d35cf22b0561b44a6abd81d921d550e9.tar.bz2 external_python_setuptools-1b03e7a3d35cf22b0561b44a6abd81d921d550e9.zip |
Merge pull request #1954 from gpotter2/patch-2
Fix dead link
Diffstat (limited to 'docs')
-rw-r--r-- | docs/setuptools.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt index 11faf041..d214ca99 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -1000,11 +1000,11 @@ and Python Eggs. It is strongly recommended that, if you are using data files, you should use the :ref:`ResourceManager API` of ``pkg_resources`` to access them. The ``pkg_resources`` module is distributed as part of setuptools, so if you're using setuptools to distribute your package, there is no reason not to -use its resource management API. See also `Accessing Package Resources`_ for +use its resource management API. See also `Importlib Resources`_ for a quick example of converting code that uses ``__file__`` to use ``pkg_resources`` instead. -.. _Accessing Package Resources: http://peak.telecommunity.com/DevCenter/PythonEggs#accessing-package-resources +.. _Importlib Resources: https://docs.python.org/3/library/importlib.html#module-importlib.resources Non-Package Data Files |