diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-08 03:06:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-08 03:06:00 (GMT) |
commit | 399e4c4f8f2570a342ac50e9500b12e86eb330a9 (patch) | |
tree | 46472e94ea46a4fbe8c3eebe3a30ef9fc529f6f8 /Include | |
parent | d846f1d4c21f4589966512f78a4a4d74f8399d6d (diff) | |
download | cpython-399e4c4f8f2570a342ac50e9500b12e86eb330a9.zip cpython-399e4c4f8f2570a342ac50e9500b12e86eb330a9.tar.gz cpython-399e4c4f8f2570a342ac50e9500b12e86eb330a9.tar.bz2 |
add _PyObject_LookupSpecial to handle fetching special method lookup
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h index 1bc13e7..12e0c46 100644 --- a/Include/object.h +++ b/Include/object.h @@ -451,6 +451,7 @@ PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t); PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *, PyObject *, PyObject *); PyAPI_FUNC(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *); +PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, char *, PyObject **); PyAPI_FUNC(unsigned int) PyType_ClearCache(void); PyAPI_FUNC(void) PyType_Modified(PyTypeObject *); |