this repo has no description
at trunk 31 lines 375 B view raw
1#!/usr/bin/env python3 2# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) 3 4from _builtins import _builtin, _unimplemented, _gc 5 6 7def collect(): 8 _gc() 9 10 11def disable(): 12 pass 13 14 15def enable(): 16 _unimplemented() 17 18 19garbage = [] 20 21 22def immortalize_heap(): 23 _builtin() 24 25 26def _is_immortal(obj): 27 _builtin() 28 29 30def isenabled(): 31 return False