Re: Address-Of operator equivalent, PAVL search tree

2008-08-21 Thread castironpi
On Aug 21, 11:03 pm, castironpi <[EMAIL PROTECTED]> wrote: > Hi, > > I am translating the GNU library's PAVL search tree implementation > into Python.  I can't use it directly because a delete function I need > uses a different method of finding the node to delete. > > It contains this line: > >  

Address-Of operator equivalent, PAVL search tree

2008-08-21 Thread castironpi
Hi, I am translating the GNU library's PAVL search tree implementation into Python. I can't use it directly because a delete function I need uses a different method of finding the node to delete. It contains this line: q = (struct pavl_node *) &tree->pavl_root; line 276 in http://www.sf