From: Gregory P. Smith Date: Tue, 14 Apr 2015 20:24:34 +0000 (-0700) Subject: issue9859: rename CPyMatchTest to APIMismatchTest and add @support.cpython_only. X-Git-Tag: v3.5.0a4~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1bef9075b86512ec618b96f6f3a22353154f26b7;p=thirdparty%2FPython%2Fcpython.git issue9859: rename CPyMatchTest to APIMismatchTest and add @support.cpython_only. --- diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 47c3b51a60b1..c8a962c6fa7c 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -719,7 +719,8 @@ class PyIOTest(IOTest): pass -class CPyMatchTest(unittest.TestCase): +@support.cpython_only +class APIMismatchTest(unittest.TestCase): @unittest.skip('test to be fixed by issue 9858') def test_RawIOBase_io_in_pyio_match(self): @@ -3733,7 +3734,7 @@ class PySignalsTest(SignalsTest): def load_tests(*args): - tests = (CIOTest, PyIOTest, CPyMatchTest, + tests = (CIOTest, PyIOTest, APIMismatchTest, CBufferedReaderTest, PyBufferedReaderTest, CBufferedWriterTest, PyBufferedWriterTest, CBufferedRWPairTest, PyBufferedRWPairTest,