diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-28 00:21:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 00:21:47 (GMT) |
commit | c44af75e241e2e503bc4a63cd4585bc6f4f31cc7 (patch) | |
tree | c5965c59e4b6639f0421aa2266eff58363da5ea7 | |
parent | 4f71f1680de11baf7fb421ef500f36ffd5936b58 (diff) | |
download | cpython-c44af75e241e2e503bc4a63cd4585bc6f4f31cc7.zip cpython-c44af75e241e2e503bc4a63cd4585bc6f4f31cc7.tar.gz cpython-c44af75e241e2e503bc4a63cd4585bc6f4f31cc7.tar.bz2 |
[3.12] Docs: fix markup for `importlib.machinery.NamespaceLoader` (GH-112479) (#112481)
Docs: fix markup for `importlib.machinery.NamespaceLoader` (GH-112479)
(cherry picked from commit 2e632fa07d13a58be62f59be4e656ad58b378f9b)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index fc95472..2402bc5 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1145,7 +1145,7 @@ find and load modules. .. versionadded:: 3.4 -.. class:: NamespaceLoader(name, path, path_finder): +.. class:: NamespaceLoader(name, path, path_finder) A concrete implementation of :class:`importlib.abc.InspectLoader` for namespace packages. This is an alias for a private class and is only made |