From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 3 Aug 2021 17:50:24 +0000 (-0700) Subject: bpo-41886: Fix documented type of PyType_Type (GH-22454) X-Git-Tag: v3.10.0rc2~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=952aa31c89f70d3c53596449bd2ed9a4817a2364;p=thirdparty%2FPython%2Fcpython.git bpo-41886: Fix documented type of PyType_Type (GH-22454) (cherry picked from commit ac811f9b5a68ce8756911ef2c8be83b46696018f) Co-authored-by: da-woods --- diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 7a677593d073..4d0c65cc31f7 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.