diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-09 14:17:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 14:17:49 (GMT) |
commit | 370cbbbfeb2629dafe154387871d2eb9e3d5921a (patch) | |
tree | 2858efcaeceee47542fb57aff1cbdeafbd29a6ef /Doc/c-api | |
parent | 0211f919b11c029d067769cae3f5e86068df85ce (diff) | |
download | cpython-370cbbbfeb2629dafe154387871d2eb9e3d5921a.zip cpython-370cbbbfeb2629dafe154387871d2eb9e3d5921a.tar.gz cpython-370cbbbfeb2629dafe154387871d2eb9e3d5921a.tar.bz2 |
[3.12] Docs: correctly link to code objects (GH-115214) (#115216)
(cherry picked from commit 769d4448260aaec687d9306950225316f9faefce)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/code.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 5082b0c..11c12e6 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -22,12 +22,13 @@ bound into a function. .. c:var:: PyTypeObject PyCode_Type This is an instance of :c:type:`PyTypeObject` representing the Python - :class:`code` type. + :ref:`code object <code-objects>`. .. c:function:: int PyCode_Check(PyObject *co) - Return true if *co* is a :class:`code` object. This function always succeeds. + Return true if *co* is a :ref:`code object <code-objects>`. + This function always succeeds. .. c:function:: int PyCode_GetNumFree(PyCodeObject *co) |