[Python-checkins] cpython (3.4): Closes #22205: sys._debugmallocstats is a cpython specific feature, so

victor.stinner python-checkins at python.org
Sat Aug 16 14:12:15 CEST 2014


http://hg.python.org/cpython/rev/615aa483dbb1
changeset:   92114:615aa483dbb1
branch:      3.4
parent:      92112:3435c5865cfc
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Aug 16 14:11:01 2014 +0200
summary:
  Closes #22205: sys._debugmallocstats is a cpython specific feature, so
test_debugmallocstats should be marked as such. Patch written by Martin
Matusiak.

files:
  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
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -657,6 +657,7 @@
         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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list