diff options
author | Gregory P. Smith <greg@krypto.org> | 2015-04-14 20:24:34 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2015-04-14 20:24:34 (GMT) |
commit | 1bef9075b86512ec618b96f6f3a22353154f26b7 (patch) | |
tree | 8b2b45aed32313de8f61d3cf7d3e0803ea5387ca /Lib/test | |
parent | 054b065f6cae1634ac35e2e73e81e8e5c4bce2d9 (diff) | |
download | cpython-1bef9075b86512ec618b96f6f3a22353154f26b7.zip cpython-1bef9075b86512ec618b96f6f3a22353154f26b7.tar.gz cpython-1bef9075b86512ec618b96f6f3a22353154f26b7.tar.bz2 |
issue9859: rename CPyMatchTest to APIMismatchTest and add @support.cpython_only.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_io.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 47c3b51..c8a962c 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, |