projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e9a451
)
all Nodes inherit from object, so should CmpNode
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 14 Dec 2008 14:31:24 +0000
(15:31 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 14 Dec 2008 14:31:24 +0000
(15:31 +0100)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index fd7a3f727fa2ff90281f1835115edf63b1092d19..00d8f2e979f89bee159429e73d95443a71ad6a4a 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-4460,7
+4460,7
@@
richcmp_constants = {
">=": "Py_GE",
}
-class CmpNode:
+class CmpNode
(object)
:
# Mixin class containing code common to PrimaryCmpNodes
# and CascadedCmpNodes.