all Nodes inherit from object, so should CmpNode
authorStefan Behnel <scoder@users.berlios.de>
Sun, 14 Dec 2008 14:31:24 +0000 (15:31 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 14 Dec 2008 14:31:24 +0000 (15:31 +0100)
Cython/Compiler/ExprNodes.py

index fd7a3f727fa2ff90281f1835115edf63b1092d19..00d8f2e979f89bee159429e73d95443a71ad6a4a 100644 (file)
@@ -4460,7 +4460,7 @@ richcmp_constants = {
     ">=": "Py_GE",
 }
 
-class CmpNode:
+class CmpNode(object):
     #  Mixin class containing code common to PrimaryCmpNodes
     #  and CascadedCmpNodes.