From: Stefan Behnel Date: Sun, 3 Nov 2013 15:09:23 +0000 (+0100) Subject: disable Py2.6+ bytearray tests in earlier Python versions X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e3d8413fe3bea6a7f6019ec6380d3411538e302;p=platform%2Fupstream%2Fpython-cython.git disable Py2.6+ bytearray tests in earlier Python versions --- diff --git a/runtests.py b/runtests.py index 58f6c35..763a977 100755 --- a/runtests.py +++ b/runtests.py @@ -235,7 +235,8 @@ VER_DEP_MODULES = { 'run.pure_py', # decorators, with statement 'run.purecdef', 'run.struct_conversion', - 'run.bytearray', + 'run.bytearray_coercion', + 'run.bytearraymethods', # memory views require buffer protocol 'memoryview.relaxed_strides', 'memoryview.cythonarray',