projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
575a8e7
)
typo (bug 220109)
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 21 Apr 2008 05:52:43 +0000
(07:52 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 21 Apr 2008 05:52:43 +0000
(07:52 +0200)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index bec4b82665f1b2c6a21575f2abed1607ed591121..a6d0bd7b606d5c7718e34f185d969389b0da6129 100644
(file)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-776,7
+776,7
@@
class NameNode(AtomicExprNode):
try:
return denv.lookup(self.name)
except KeyError:
- error(self.pos, "Compile-time name '%s' not defined"
,
self.name)
+ error(self.pos, "Compile-time name '%s' not defined"
%
self.name)
def coerce_to(self, dst_type, env):
# If coercing to a generic pyobject and this is a builtin