From 780e405083d60c6c74997d4b222abc5ec6758ba2 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Sun, 31 Oct 2010 00:10:40 -0700 Subject: [PATCH] Python 2.3 fix. --- Cython/Build/Inline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.26.2