Richcmp operator constants.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Sep 2010 07:11:54 +0000 (00:11 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 9 Sep 2010 07:11:54 +0000 (00:11 -0700)
Cython/Includes/cpython/object.pxd

index de49492fc315d654d4521cd2c884e46340df6730..e26dc47a5a73d364cf764fae524dc9c132eb6fa7 100644 (file)
@@ -53,6 +53,8 @@ cdef extern from "Python.h":
     # Delete attribute named attr_name, for object o. Returns -1 on
     # failure. This is the equivalent of the Python statement "del
     # o.attr_name".
+    
+    int Py_LT, Py_LE, Py_EQ, Py_NE, Py_GT, Py_GE
 
     object PyObject_RichCompare(object o1, object o2, int opid)
     # Return value: New reference.