freelance-project-34-market.../mypy-stubs/cython/__init__.pyi
2024-11-22 22:51:31 +03:00

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()