projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
240d488
)
Python 2.3 fix.
author
Robert Bradshaw
<robertwb@math.washington.edu>
Sun, 31 Oct 2010 07:10:40 +0000
(
00:10
-0700)
committer
Robert Bradshaw
<robertwb@math.washington.edu>
Sun, 31 Oct 2010 07:10:40 +0000
(
00:10
-0700)
Cython/Build/Inline.py
patch
|
blob
|
history
diff --git
a/Cython/Build/Inline.py
b/Cython/Build/Inline.py
index cc15a3a00b8e4b73e463c153b9b3b9268cd920b6..0a706980bfe06ac902399d427d7ebb400a7b0235 100644
(file)
--- a/
Cython/Build/Inline.py
+++ b/
Cython/Build/Inline.py
@@
-101,7
+101,7
@@
def cython_inline(code,
print "Could not parse code as a string (to extract unbound symbols)."
arg_names = kwds.keys()
arg_names.sort()
- arg_sigs = tuple(
(get_type(kwds[arg], ctx), arg) for arg in arg_names
)
+ arg_sigs = tuple(
[(get_type(kwds[arg], ctx), arg) for arg in arg_names]
)
key = code, arg_sigs
module = _code_cache.get(key)
if not module: