diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-26 19:16:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 19:16:06 (GMT) |
commit | af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da (patch) | |
tree | dc29e16249e0cffab635260f81deccf6e316a257 /Doc/c-api/import.rst | |
parent | 737d1da0746053d515158eac5b115e8bd813f6d3 (diff) | |
download | cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.zip cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.tar.gz cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.tar.bz2 |
gh-107091: Fix some uses of :c:member: role (GH-107129)
Diffstat (limited to 'Doc/c-api/import.rst')
-rw-r--r-- | Doc/c-api/import.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst index f9c2f4e..2ed0984 100644 --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -154,7 +154,7 @@ Importing Modules :class:`SourceFileLoader` otherwise. The module's :attr:`__file__` attribute will be set to the code object's - :c:member:`co_filename`. If applicable, :attr:`__cached__` will also + :attr:`co_filename`. If applicable, :attr:`__cached__` will also be set. This function will reload the module if it was already imported. See |