diff options
author | da-woods <dw-git@d-woods.co.uk> | 2021-08-03 17:21:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 17:21:25 (GMT) |
commit | ac811f9b5a68ce8756911ef2c8be83b46696018f (patch) | |
tree | 2c4b912fcf39775e0f89f29cafeea6c1dc58bf31 | |
parent | 6871fd0e8e5257f3ffebd1a1b2ca50e5f494e7f6 (diff) | |
download | cpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.zip cpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.tar.gz cpython-ac811f9b5a68ce8756911ef2c8be83b46696018f.tar.bz2 |
bpo-41886: Fix documented type of PyType_Type (GH-22454)
-rw-r--r-- | Doc/c-api/type.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 46cb376..630c7db 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. |