From: Stefan Behnel Date: Sun, 14 Dec 2008 14:31:24 +0000 (+0100) Subject: all Nodes inherit from object, so should CmpNode X-Git-Tag: 0.11-beta~126 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=50b97529fc47b4c72b007e9ae508b01e3362dc7b;p=cython.git all Nodes inherit from object, so should CmpNode --- 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.