diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-08 03:25:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-08 03:25:19 (GMT) |
commit | 224205fde2af8fdbbd11de0b219880df9a0edabd (patch) | |
tree | 85c6a9b1b07d31f712654d82b2e25cf5abeac92a /Include | |
parent | c04dad772c4c01a60b3c0e70e3ae3e53bf7f9b66 (diff) | |
download | cpython-224205fde2af8fdbbd11de0b219880df9a0edabd.zip cpython-224205fde2af8fdbbd11de0b219880df9a0edabd.tar.gz cpython-224205fde2af8fdbbd11de0b219880df9a0edabd.tar.bz2 |
Merged revisions 72461 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72461 | benjamin.peterson | 2009-05-07 22:06:00 -0500 (Thu, 07 May 2009) | 1 line
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 d79b6ab..772bbb3 100644 --- a/Include/object.h +++ b/Include/object.h @@ -414,6 +414,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 *); |