From 8ee3c4d964f362f9e30a890187534aa7b47e4a15 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 11 Aug 2013 19:23:57 +0200 Subject: [PATCH] disable cythonize_script* tests in Py2.4: missing support for running 'python2.4 -m a.b.c' --- runtests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtests.py b/runtests.py index e2eeab0..0311c87 100755 --- a/runtests.py +++ b/runtests.py @@ -216,6 +216,8 @@ VER_DEP_MODULES = { 'run.relativeimport_star_T542', 'run.initial_file_path', # relative import 'run.pynumber_subtype_conversion', # bug in Py2.4 + 'build.cythonize_script', # python2.4 -m a.b.c + 'build.cythonize_script_package', # python2.4 -m a.b.c ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.language_level', # print function -- 2.7.4