From: Robert Bradshaw Date: Thu, 8 Oct 2009 04:47:14 +0000 (-0700) Subject: Fix for Python 2.3 X-Git-Tag: 0.13.beta0~2^2~121^2~99^2~3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=310a692075650901c126ffb3165d1c92ff92f1a8;p=cython.git Fix for Python 2.3 --- diff --git a/Cython/Compiler/AnalysedTreeTransforms.py b/Cython/Compiler/AnalysedTreeTransforms.py index 25ccf404..3f01e20d 100644 --- a/Cython/Compiler/AnalysedTreeTransforms.py +++ b/Cython/Compiler/AnalysedTreeTransforms.py @@ -1,7 +1,7 @@ from Cython.Compiler.Visitor import VisitorTransform, ScopeTrackingTransform, TreeVisitor from Nodes import StatListNode, SingleAssignmentNode, CFuncDefNode -from ExprNodes import (DictNode, DictItemNode, NameNode, UnicodeNode, NoneNode, - ExprNode, AttributeNode, ModuleRefNode, DocstringRefNode) +from ExprNodes import DictNode, DictItemNode, NameNode, UnicodeNode, NoneNode, \ + ExprNode, AttributeNode, ModuleRefNode, DocstringRefNode from PyrexTypes import py_object_type from Builtin import dict_type from StringEncoding import EncodedString