diff --git a/Include/internal/pycore_interp.h b/Include/internal/pycore_interp.h index 37cc88ed081b72..f78e3e7178e527 100644 --- a/Include/internal/pycore_interp.h +++ b/Include/internal/pycore_interp.h @@ -103,6 +103,11 @@ struct _is { size_t stacksize; } threads; + + // ORBITAL MODIFICATIONS (hey guys, don't mind me) + const void* orb_passthough; + + /* Reference to the _PyRuntime global variable. This field exists to not have to pass runtime in addition to tstate to a function. Get runtime from tstate: tstate->interp->runtime. */