From 4ca596a6412be1bdd450803f50eb76e2562ba8f3 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 1 Jun 2008 16:52:22 +0200 Subject: [PATCH] cleanup --- 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 7d065e53..91f8bae4 100644 --- a/Cython/Compiler/Parsing.py +++ b/Cython/Compiler/Parsing.py @@ -1007,7 +1007,7 @@ def p_dotted_name(s, as_allowed): names.append(p_ident(s)) if as_allowed: as_name = p_as_name(s) - return (pos, target_name, u'.'join(names), as_name) + return (pos, target_name, u'.'.join(names), as_name) def p_as_name(s): if s.sy == 'IDENT' and s.systring == 'as': -- 2.26.2