diff options
author | Victor Stinner <vstinner@python.org> | 2024-03-14 18:17:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 18:17:43 (GMT) |
commit | c432df6d56f3e02530132321b47dcc7b914a3660 (patch) | |
tree | 5681440b657fcbdd83da18a7fb2e74dfef1a1656 /Include/internal | |
parent | 25cd8730aa39c18e767f63586dfd1da2fbb307c9 (diff) | |
download | cpython-c432df6d56f3e02530132321b47dcc7b914a3660.zip cpython-c432df6d56f3e02530132321b47dcc7b914a3660.tar.gz cpython-c432df6d56f3e02530132321b47dcc7b914a3660.tar.bz2 |
gh-111696, PEP 737: Add PyType_GetModuleName() function (#116824)
Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_typeobject.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/internal/pycore_typeobject.h b/Include/internal/pycore_typeobject.h index c214111..5c32d49 100644 --- a/Include/internal/pycore_typeobject.h +++ b/Include/internal/pycore_typeobject.h @@ -151,10 +151,6 @@ PyAPI_FUNC(PyObject*) _PySuper_Lookup(PyTypeObject *su_type, PyObject *su_obj, PyObject *name, int *meth_found); -// This is exported for the _testinternalcapi module. -PyAPI_FUNC(PyObject *) _PyType_GetModuleName(PyTypeObject *); - - #ifdef __cplusplus } #endif |