From 6a7cd28b72e7dca563ca902edba3db47fee44b78 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 29 Mar 2009 12:24:01 +0200 Subject: [PATCH] make import explicit (would be better to avoid the star imports, though) --- Cython/Compiler/ParseTreeTransforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.26.2