diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-19 20:20:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 20:20:10 +0200 |
commit | 24c738a9e91b8f46da6166663d8ce7ec18cec784 (patch) | |
tree | 99ed70ea10252ad329c458d9ddd3d758924aedbd /Lib/test/test_coroutines.py | |
parent | 6b5a9ec4788770c652bac3bf5d5a0a3b710b82ae (diff) | |
download | cpython-24c738a9e91b8f46da6166663d8ce7ec18cec784.tar.gz cpython-24c738a9e91b8f46da6166663d8ce7ec18cec784.zip |
bpo-29845: Mark tests that use _testcapi as CPython-only (#711)
Diffstat (limited to 'Lib/test/test_coroutines.py')
-rw-r--r-- | Lib/test/test_coroutines.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py index a69583b5f95..2b79a17ea70 100644 --- a/Lib/test/test_coroutines.py +++ b/Lib/test/test_coroutines.py @@ -2117,6 +2117,7 @@ class SysSetCoroWrapperTest(unittest.TestCase): sys.set_coroutine_wrapper(None) +@support.cpython_only class CAPITest(unittest.TestCase): def test_tp_await_1(self): |