summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-03 17:50:24 (GMT)
committerGitHub <noreply@github.com>2021-08-03 17:50:24 (GMT)
commit952aa31c89f70d3c53596449bd2ed9a4817a2364 (patch)
treee63bed1f2fba7892433fd97cebf06cda074dfb1c /Doc/c-api
parent4b46db68d0cb4a84f4f13501218a3ec2438fca1e (diff)
downloadcpython-952aa31c89f70d3c53596449bd2ed9a4817a2364.zip
cpython-952aa31c89f70d3c53596449bd2ed9a4817a2364.tar.gz
cpython-952aa31c89f70d3c53596449bd2ed9a4817a2364.tar.bz2
bpo-41886: Fix documented type of PyType_Type (GH-22454)
(cherry picked from commit ac811f9b5a68ce8756911ef2c8be83b46696018f) Co-authored-by: da-woods <dw-git@d-woods.co.uk>
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 7a67759..4d0c65c 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.