diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-08-16 12:11:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-08-16 12:11:01 (GMT) |
commit | 8e7966b00e4cb51b19c5c8eae33c706c22c185b3 (patch) | |
tree | ebc3394a655b7675531920c74e544bb68cb5ca80 | |
parent | b2e3a939bfd20e8d57881e4ad6e45df61fbfa444 (diff) | |
download | cpython-8e7966b00e4cb51b19c5c8eae33c706c22c185b3.zip cpython-8e7966b00e4cb51b19c5c8eae33c706c22c185b3.tar.gz cpython-8e7966b00e4cb51b19c5c8eae33c706c22c185b3.tar.bz2 |
Closes #22205: sys._debugmallocstats is a cpython specific feature, so
test_debugmallocstats should be marked as such. Patch written by Martin
Matusiak.
-rw-r--r-- | Lib/test/test_sys.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index a68ed08..93960cd 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -657,6 +657,7 @@ class SysModuleTest(unittest.TestCase): self.assertEqual(sys.implementation.name, sys.implementation.name.lower()) + @test.support.cpython_only def test_debugmallocstats(self): # Test sys._debugmallocstats() from test.script_helper import assert_python_ok |