[Python-checkins] bpo-41886: Fix documented type of PyType_Type (GH-22454)

ammaraskar webhook-mailer at python.org
Tue Aug 3 13:21:30 EDT 2021


https://github.com/python/cpython/commit/ac811f9b5a68ce8756911ef2c8be83b46696018f
commit: ac811f9b5a68ce8756911ef2c8be83b46696018f
branch: main
author: da-woods <dw-git at d-woods.co.uk>
committer: ammaraskar <ammar_askar at hotmail.com>
date: 2021-08-03T13:21:25-04:00
summary:

bpo-41886: Fix documented type of PyType_Type (GH-22454)

files:
M Doc/c-api/type.rst

diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst
index 46cb3768fcee4..630c7db437cb4 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.



More information about the Python-checkins mailing list