This commit is contained in:
unknown
2025-12-28 20:10:07 -08:00
parent 4f701f6caa
commit 7dacf861e7

View File

@@ -59,6 +59,14 @@ from lib import *
context = None
context_tracker = None
active_sessions = None
env = os.environ.copy()
for k in (
"MallocStackLogging",
"MallocStackLoggingNoCompact",
"MallocScribble",
"MallocGuardEdges",
):
env.pop(k, None)
class DependencyError(Exception):
def __init__(self, message:str|None):