Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
Commonly tp_getattro is PyObject_GenericGetAttr, tp_getattr is 0, and tp_methods is a PyMethodDef array. – eryksun Nov 10 '11 at 13:28
so avl_tree_getattr function can be dropped altogether ... and what in one's code would I have to pay attention to if I want to know whether it's a "common" case or an "uncommon" one ? – sylvainulg Nov 10 '11 at 16:10
1  
Look at xmlparse_getattro in pyexpat.c. It handles a bunch of special cases and otherwise defaults to PyObject_GenericGetAttr. It's the function assigned to tp_getattro. – eryksun Nov 10 '11 at 21:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.