summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-04-14 20:24:34 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-04-14 20:24:34 (GMT)
commit1bef9075b86512ec618b96f6f3a22353154f26b7 (patch)
tree8b2b45aed32313de8f61d3cf7d3e0803ea5387ca /Lib/test
parent054b065f6cae1634ac35e2e73e81e8e5c4bce2d9 (diff)
downloadcpython-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.py5
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,