there. I'm trying to port the avl module for Python I found on sourceforge http://sourceforge.net/projects/pyavl/ to python3. I managed to get rid of most errors, but I don't find clear information on what to do with
Py_LOCAL(PyObject *) avl_tree_getattr(avl_tree_Object * self, char *name)
{
return Py_FindMethod(avl_tree_methods, (PyObject *) self, name);
}
there are some suggestions on mailing lists http://www.mail-archive.com/python-3000@python.org/msg15184.html to just use PyObject_GenericGetAttr instead, but I must confess I don't know the internals of python modules enough to see how I could apply it in this specific case.
Any hint ?
tp_getattroisPyObject_GenericGetAttr,tp_getattris 0, andtp_methodsis aPyMethodDefarray. – eryksun Nov 10 '11 at 13:28PyObject_GenericGetAttr. It's the function assigned totp_getattro. – eryksun Nov 10 '11 at 21:17