From 8e7966b00e4cb51b19c5c8eae33c706c22c185b3 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 16 Aug 2014 14:11:01 +0200 Subject: Closes #22205: sys._debugmallocstats is a cpython specific feature, so test_debugmallocstats should be marked as such. Patch written by Martin Matusiak. --- Lib/test/test_sys.py | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v0.12