diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-08-16 12:11:14 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-08-16 12:11:14 (GMT) |
commit | cddaa1bd62877f463f7ff4e572440ddf781784a5 (patch) | |
tree | 63322366a242b115cd27cb54c52b233459a9c0a9 /Lib/test/test_sys.py | |
parent | 39e6c07bebd8b5f025c75ce48b4a2baaa5346f4e (diff) | |
parent | 8e7966b00e4cb51b19c5c8eae33c706c22c185b3 (diff) | |
download | cpython-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.py | 1 |
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 |