aboutsummaryrefslogtreecommitdiff
path: root/Doc/c-api
diff options
context:
space:
mode:
authorda-woods <dw-git@d-woods.co.uk>2021-08-03 18:21:25 +0100
committerGitHub <noreply@github.com>2021-08-03 13:21:25 -0400
commitac811f9b5a68ce8756911ef2c8be83b46696018f (patch)
tree2c4b912fcf39775e0f89f29cafeea6c1dc58bf31 /Doc/c-api
parentEnsure LICENSE.txt file is generated even in PGO builds (GH-27580) (diff)
downloadcpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.tar.gz
cpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.tar.bz2
cpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.zip
bpo-41886: Fix documented type of PyType_Type (GH-22454)
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/type.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst
index 46cb3768fce..630c7db437c 100644
--- a/Doc/c-api/type.rst
+++ b/Doc/c-api/type.rst
@@ -13,7 +13,7 @@ Type Objects
The C structure of the objects used to describe built-in types.
-.. c:var:: PyObject* PyType_Type
+.. c:var:: PyTypeObject PyType_Type
This is the type object for type objects; it is the same object as
:class:`type` in the Python layer.