diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2019-09-11 10:57:59 (GMT) |
---|---|---|
committer | Lisa Roach <lisaroach14@gmail.com> | 2019-09-11 10:57:59 (GMT) |
commit | 2d8d597bb8f882a7677db5a2739df0e617098634 (patch) | |
tree | b807ed73a99df0f578403a0c23a99c74e474fc51 /Doc/c-api | |
parent | f2173ae38fa49235c3cdc28ae2ca2e19a375a596 (diff) | |
download | cpython-2d8d597bb8f882a7677db5a2739df0e617098634.zip cpython-2d8d597bb8f882a7677db5a2739df0e617098634.tar.gz cpython-2d8d597bb8f882a7677db5a2739df0e617098634.tar.bz2 |
bpo-38103: fix conflicting labels in the docs. (GH-15906)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/typeobj.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 638fb0c..f8e30a0 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -20,7 +20,7 @@ functionality. The fields of the type object are examined in detail in this section. The fields will be described in the order in which they occur in the structure. -In addition to the following quick reference, the :ref:`examples` +In addition to the following quick reference, the :ref:`typedef-examples` section provides at-a-glance insight into the meaning and use of :c:type:`PyTypeObject`. @@ -2450,7 +2450,7 @@ Slot Type typedefs .. c:type:: int (*objobjargproc)(PyObject *, PyObject *, PyObject *) -.. _examples: +.. _typedef-examples: Examples ======== |