We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16dfabf commit c9137d4Copy full SHA for c9137d4
Lib/test/test_capi.py
@@ -933,7 +933,11 @@ def check_pyobject_is_freed(self, func_name):
933
except _testcapi.error:
934
os._exit(1)
935
''')
936
- assert_python_ok('-c', code, PYTHONMALLOC=self.PYTHONMALLOC)
+ assert_python_ok(
937
+ '-c', code,
938
+ PYTHONMALLOC=self.PYTHONMALLOC,
939
+ MALLOC_CONF="junk:false",
940
+ )
941
942
def test_pyobject_null_is_freed(self):
943
self.check_pyobject_is_freed('check_pyobject_null_is_freed')
0 commit comments