diff options
author | Jaime Alonso Lorenzo <jaimealonsolorenzo@gmail.com> | 2023-04-24 16:51:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 16:51:45 (GMT) |
commit | d2745fe850d7b1959843c3fd3d284aa14956cd9e (patch) | |
tree | 0ccd2b74f59852c0309cbd6ca53954a5fe3894b2 | |
parent | 68f583658247ceced323d79e1cf775c91c53c019 (diff) | |
download | cpython-d2745fe850d7b1959843c3fd3d284aa14956cd9e.zip cpython-d2745fe850d7b1959843c3fd3d284aa14956cd9e.tar.gz cpython-d2745fe850d7b1959843c3fd3d284aa14956cd9e.tar.bz2 |
gh-103765: Fix 'Warning: py:class reference target not found: ModuleSpec' (GH-103769)
-rw-r--r-- | Doc/library/pkgutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 66d753b..64e617b 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -82,7 +82,7 @@ support. This is a backwards compatibility wrapper around :func:`importlib.util.find_spec` that converts most failures to :exc:`ImportError` and only returns the loader rather than the full - :class:`ModuleSpec`. + :class:`importlib.machinery.ModuleSpec`. .. versionchanged:: 3.3 Updated to be based directly on :mod:`importlib` rather than relying |