From 9ae7fc99e36819c838c7823ce5a0cea8b0dd0b1a Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 25 Nov 2010 23:32:21 +0100 Subject: [PATCH] disable test in Py2.3 --- runtests.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/runtests.py b/runtests.py index ff73018b..8d966452 100644 --- a/runtests.py +++ b/runtests.py @@ -56,14 +56,13 @@ EXT_DEP_INCLUDES = [ VER_DEP_MODULES = { # tests are excluded if 'CurrentPythonVersion OP VersionTuple', i.e. - # (2,4) : (operator.le, ...) excludes ... when PyVer <= 2.4.x + # (2,4) : (operator.lt, ...) excludes ... when PyVer < 2.4.x + (2,4) : (operator.lt, lambda x: x in ['run.extern_builtins_T258', + 'run.builtin_sorted' + ]), (2,5) : (operator.lt, lambda x: x in ['run.any', 'run.all', ]), - (2,4) : (operator.le, lambda x: x in ['run.extern_builtins_T258' - ]), - (2,4) : (operator.lt, lambda x: x in ['run.builtin_sorted' - ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.cython3', ]), -- 2.26.2