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