Python 2.3 fix.
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 31 Oct 2010 07:10:40 +0000 (00:10 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 31 Oct 2010 07:10:40 +0000 (00:10 -0700)
Cython/Build/Inline.py

index cc15a3a00b8e4b73e463c153b9b3b9268cd920b6..0a706980bfe06ac902399d427d7ebb400a7b0235 100644 (file)
@@ -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: