diff options
author | jianghuyiyuan <shuangcui@live.com> | 2024-08-01 00:26:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 00:26:09 (GMT) |
commit | 46f5a4f9e1781ad8d60eb53bbaf6cd8534a286cd (patch) | |
tree | 8278a9c7c1cc9ba012e5547ddb15849ae8873194 /Doc/howto | |
parent | 06656e259bc9b2c3cf8a23bdc6e4acb052c56e1f (diff) | |
download | cpython-46f5a4f9e1781ad8d60eb53bbaf6cd8534a286cd.zip cpython-46f5a4f9e1781ad8d60eb53bbaf6cd8534a286cd.tar.gz cpython-46f5a4f9e1781ad8d60eb53bbaf6cd8534a286cd.tar.bz2 |
Fix typos in docs, error messages and comments (#122502)
Signed-off-by: jianghuyiyuan <shuangcui@live.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/isolating-extensions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/isolating-extensions.rst b/Doc/howto/isolating-extensions.rst index e35855d..a636e06 100644 --- a/Doc/howto/isolating-extensions.rst +++ b/Doc/howto/isolating-extensions.rst @@ -339,7 +339,7 @@ That is, heap types should: - Define a traverse function using ``Py_tp_traverse``, which visits the type (e.g. using ``Py_VISIT(Py_TYPE(self))``). -Please refer to the the documentation of +Please refer to the documentation of :c:macro:`Py_TPFLAGS_HAVE_GC` and :c:member:`~PyTypeObject.tp_traverse` for additional considerations. |