From: Stefan Behnel Date: Tue, 23 Nov 2010 10:45:46 +0000 (+0100) Subject: properly disable test in Py2.3 X-Git-Tag: 0.14.alpha0~96 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7de38ae0b0d21c5e88c01ce46705b06561b2d00e;p=cython.git properly disable test in Py2.3 --- diff --git a/runtests.py b/runtests.py index 42cfb671..ff73018b 100644 --- a/runtests.py +++ b/runtests.py @@ -62,7 +62,7 @@ VER_DEP_MODULES = { ]), (2,4) : (operator.le, lambda x: x in ['run.extern_builtins_T258' ]), - (2,3) : (operator.le, lambda x: x in ['run.builtin_sorted' + (2,4) : (operator.lt, lambda x: x in ['run.builtin_sorted' ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.cython3',