From b5f87b1741c9e1a95a06875e33932e4ce47c2cda Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 9 Dec 2010 03:13:37 -0800 Subject: [PATCH] Disable pure test for Py < 2.6. (Uses decorators and with statement.) --- runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runtests.py b/runtests.py index 579230c5..e96e0169 100644 --- a/runtests.py +++ b/runtests.py @@ -65,6 +65,7 @@ VER_DEP_MODULES = { ]), (2,6) : (operator.lt, lambda x: x in ['run.print_function', 'run.cython3', + 'run.pure_py', # decorators, with statement ]), # The next line should start (3,); but this is a dictionary, so # we can only have one (3,) key. Since 2.7 is supposed to be the -- 2.26.2