projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14c1860
)
cleanup
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 1 Jun 2008 14:52:22 +0000
(16:52 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 1 Jun 2008 14:52:22 +0000
(16:52 +0200)
Cython/Compiler/Parsing.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Parsing.py
b/Cython/Compiler/Parsing.py
index 7d065e5322dacf54d6ce6c359c9e88f168c73b6b..91f8bae4a853f00e1ce1e3f52b2c22f301986f73 100644
(file)
--- 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':