From: Robert Bradshaw Date: Sun, 31 Oct 2010 07:10:40 +0000 (-0700) Subject: Python 2.3 fix. X-Git-Tag: 0.14.alpha0~271^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=780e405083d60c6c74997d4b222abc5ec6758ba2;p=cython.git Python 2.3 fix. --- diff --git a/Cython/Build/Inline.py b/Cython/Build/Inline.py index cc15a3a0..0a706980 100644 --- 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: