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