diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-19 18:20:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 18:20:10 (GMT) |
commit | 24c738a9e91b8f46da6166663d8ce7ec18cec784 (patch) | |
tree | 99ed70ea10252ad329c458d9ddd3d758924aedbd /Lib/test/test_atexit.py | |
parent | 6b5a9ec4788770c652bac3bf5d5a0a3b710b82ae (diff) | |
download | cpython-24c738a9e91b8f46da6166663d8ce7ec18cec784.zip cpython-24c738a9e91b8f46da6166663d8ce7ec18cec784.tar.gz cpython-24c738a9e91b8f46da6166663d8ce7ec18cec784.tar.bz2 |
bpo-29845: Mark tests that use _testcapi as CPython-only (#711)
Diffstat (limited to 'Lib/test/test_atexit.py')
-rw-r--r-- | Lib/test/test_atexit.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_atexit.py b/Lib/test/test_atexit.py index 172bd25..c761076 100644 --- a/Lib/test/test_atexit.py +++ b/Lib/test/test_atexit.py @@ -143,6 +143,7 @@ class GeneralTest(unittest.TestCase): self.assertEqual(l, [5]) +@support.cpython_only class SubinterpreterTest(unittest.TestCase): def test_callbacks_leak(self): |