From: Stefan Behnel Date: Sun, 30 Nov 2008 05:52:46 +0000 (+0100) Subject: micro cleanup X-Git-Tag: 0.11-beta~174^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=32c52d84f827c1953c70af66361dadf57e1938ab;p=cython.git micro cleanup --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index 6c2c595c..01ad7b84 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -251,7 +251,7 @@ class CompilerDirectivesNode(Node): self.body.annotate(code) code.globalstate.directives = old -class BlockNode: +class BlockNode(object): # Mixin class for nodes representing a declaration block. def generate_const_definitions(self, env, code):