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

(cherry picked from commit ac811f9b5a)

Co-authored-by: da-woods <dw-git@d-woods.co.uk>
This commit is contained in:
Miss Islington (bot) 2021-08-03 10:48:08 -07:00 committed by GitHub
parent b5f0261127
commit f26fec4f74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.