Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
--HG--
extra : transplant_source : %D8%08%8FS%1E%98%80%15%09t%F8%3D%B1%86%0C3%5B%2By%E4
  • Loading branch information
scoder committed Nov 9, 2011
1 parent a2b966b commit 3b4bc3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lxml/lxml.objectify.pyx
Expand Up @@ -931,8 +931,8 @@ cdef inline object _numericValueOf(obj):
return obj

cdef inline _richcmpPyvals(left, right, int op):
left = getattr3(left, u'pyval', left)
right = getattr3(right, u'pyval', right)
left = getattr(left, u'pyval', left)
right = getattr(right, u'pyval', right)
return python.PyObject_RichCompare(left, right, op)


Expand Down

0 comments on commit 3b4bc3a

Please sign in to comment.