make import explicit (would be better to avoid the star imports, though)
authorStefan Behnel <scoder@users.berlios.de>
Sun, 29 Mar 2009 10:24:01 +0000 (12:24 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 29 Mar 2009 10:24:01 +0000 (12:24 +0200)
Cython/Compiler/ParseTreeTransforms.py

index d9be7291de3e339dd3b680e6cc04209480e0723d..0e1e5474b20c3f44ed4ac73a8375a981613d88f2 100644 (file)
@@ -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: