from typing import (Type, Any,) class NoGIL: def __enter__(self): ... def __exit__(self, exc_class: Type[Exception], exc: Exception, tb: Any) -> None: ... nogil = NoGIL()