From ce72af6741030cc3514cfd45bca2e36a9417520e Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Mon, 28 Apr 2008 12:58:02 -0700 Subject: [PATCH] Fix obscure unicode error related to PEP 263 work. --- Cython/Compiler/Parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Parsing.py b/Cython/Compiler/Parsing.py index d86cc018..b4133efb 100644 --- a/Cython/Compiler/Parsing.py +++ b/Cython/Compiler/Parsing.py @@ -912,7 +912,7 @@ def p_import_statement(s): else: if as_name and "." in dotted_name: name_list = ExprNodes.ListNode(pos, args = [ - ExprNodes.StringNode(pos, value = "*")]) + ExprNodes.StringNode(pos, value = Utils.EncodedString("*"))]) else: name_list = None dotted_name = Utils.EncodedString(dotted_name) -- 2.26.2