import _testcapi class C(): pass def foo(i): i -= 1 if i: foo(i) else: _testcapi.set_nomemory_allocator() C() foo(16)