[Lxml-checkins] r49016 - lxml/trunk/src/lxml

scoder at codespeak.net scoder at codespeak.net
Sat Nov 24 10:45:18 CET 2007


Author: scoder
Date: Sat Nov 24 10:45:17 2007
New Revision: 49016

Modified:
   lxml/trunk/src/lxml/lxml.etree.pyx
Log:
compile fix

Modified: lxml/trunk/src/lxml/lxml.etree.pyx
==============================================================================
--- lxml/trunk/src/lxml/lxml.etree.pyx	(original)
+++ lxml/trunk/src/lxml/lxml.etree.pyx	Sat Nov 24 10:45:17 2007
@@ -1750,7 +1750,7 @@
             return 1
 
     def __richcmp__(self, other, int op):
-        return python.PyObject_RichCompare(dict(self), other_items, op)
+        return python.PyObject_RichCompare(dict(self), other, op)
 
 cdef class _AttribIterator:
     """Attribute iterator - for internal use only!


More information about the lxml-checkins mailing list