From 50b97529fc47b4c72b007e9ae508b01e3362dc7b Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 14 Dec 2008 15:31:24 +0100 Subject: [PATCH] all Nodes inherit from object, so should CmpNode --- Cython/Compiler/ExprNodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index fd7a3f72..00d8f2e9 100644 --- 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. -- 2.26.2