From: Victor Stinner Date: Sat, 16 Aug 2014 12:11:01 +0000 (+0200) Subject: Closes #22205: sys._debugmallocstats is a cpython specific feature, so X-Git-Tag: v3.4.2rc1~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e7966b00e4cb51b19c5c8eae33c706c22c185b3;p=python Closes #22205: sys._debugmallocstats is a cpython specific feature, so test_debugmallocstats should be marked as such. Patch written by Martin Matusiak. --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index a68ed08df7..93960cdc17 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