diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-14 22:23:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 22:23:00 (GMT) |
commit | 7bbb9b57e67057d5ca3b7e3a434527fb3fcf5a2b (patch) | |
tree | 5f09547613d22804329cac09199b629f3182b4db /Include/internal | |
parent | 5f52d20a93908196f74271db8437cc1ba7e1e262 (diff) | |
download | cpython-7bbb9b57e67057d5ca3b7e3a434527fb3fcf5a2b.zip cpython-7bbb9b57e67057d5ca3b7e3a434527fb3fcf5a2b.tar.gz cpython-7bbb9b57e67057d5ca3b7e3a434527fb3fcf5a2b.tar.bz2 |
gh-111696, PEP 737: Add %T and %N to PyUnicode_FromFormat() (#116839)
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_typeobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_typeobject.h b/Include/internal/pycore_typeobject.h index 5c32d49..8a25935 100644 --- a/Include/internal/pycore_typeobject.h +++ b/Include/internal/pycore_typeobject.h @@ -150,6 +150,8 @@ extern PyTypeObject _PyBufferWrapper_Type; PyAPI_FUNC(PyObject*) _PySuper_Lookup(PyTypeObject *su_type, PyObject *su_obj, PyObject *name, int *meth_found); +extern PyObject* _PyType_GetFullyQualifiedName(PyTypeObject *type, char sep); + #ifdef __cplusplus } |