From: Stefan Behnel Date: Sun, 29 Mar 2009 10:24:01 +0000 (+0200) Subject: make import explicit (would be better to avoid the star imports, though) X-Git-Tag: 0.12.alpha0~351 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6a7cd28b72e7dca563ca902edba3db47fee44b78;p=cython.git make import explicit (would be better to avoid the star imports, though) --- diff --git a/Cython/Compiler/ParseTreeTransforms.py b/Cython/Compiler/ParseTreeTransforms.py index d9be7291..0e1e5474 100644 --- a/Cython/Compiler/ParseTreeTransforms.py +++ b/Cython/Compiler/ParseTreeTransforms.py @@ -5,7 +5,7 @@ from Cython.Compiler.ExprNodes import * from Cython.Compiler.UtilNodes import * from Cython.Compiler.TreeFragment import TreeFragment, TemplateTransform from Cython.Compiler.StringEncoding import EncodedString -from Cython.Compiler.Errors import CompileError +from Cython.Compiler.Errors import error, CompileError try: set except NameError: