summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-08-16 12:11:14 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-08-16 12:11:14 (GMT)
commitcddaa1bd62877f463f7ff4e572440ddf781784a5 (patch)
tree63322366a242b115cd27cb54c52b233459a9c0a9 /Lib/test/test_sys.py
parent39e6c07bebd8b5f025c75ce48b4a2baaa5346f4e (diff)
parent8e7966b00e4cb51b19c5c8eae33c706c22c185b3 (diff)
downloadcpython-cddaa1bd62877f463f7ff4e572440ddf781784a5.zip
cpython-cddaa1bd62877f463f7ff4e572440ddf781784a5.tar.gz
cpython-cddaa1bd62877f463f7ff4e572440ddf781784a5.tar.bz2
(Merge 3.4) Closes #22205: sys._debugmallocstats is a cpython specific feature,
so test_debugmallocstats should be marked as such. Patch written by Martin Matusiak.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index c50b20b..93bb0ef 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -704,6 +704,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