bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)

This commit is contained in:
Hai Shi 2021-08-17 21:39:34 +08:00 committed by GitHub
parent 6a358bb948
commit 3e2c643ae0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 67 additions and 0 deletions

View file

@ -112,6 +112,13 @@ Type Objects
.. versionadded:: 3.11
.. c:function:: PyObject* PyType_GetQualName(PyTypeObject *type)
Return the type's qualified name. Equivalent to getting the
type's ``__qualname__`` attribute.
.. versionadded:: 3.11
.. c:function:: void* PyType_GetSlot(PyTypeObject *type, int slot)
Return the function pointer stored in the given slot. If the