diff options
Diffstat (limited to 'Include/cpython/object.h')
-rw-r--r-- | Include/cpython/object.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/cpython/object.h b/Include/cpython/object.h index 77184c9..64d196a 100644 --- a/Include/cpython/object.h +++ b/Include/cpython/object.h @@ -330,9 +330,6 @@ PyAPI_FUNC(int) _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *, PyObject *, PyObject *); -/* Helper to look up a builtin object */ -PyAPI_FUNC(PyObject *) _PyObject_GetBuiltin(const char *name); - #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) static inline void _Py_Dealloc_inline(PyObject *op) |