diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 1efb9fc..a38690a 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3620,6 +3620,12 @@ PyType_GetName(PyTypeObject *type) return type_name(type, NULL); } +PyObject * +PyType_GetQualName(PyTypeObject *type) +{ + return type_qualname(type, NULL); +} + void * PyType_GetSlot(PyTypeObject *type, int slot) { |