freelance-project-34-market.../python/stubs/cython/__init__.pyi
2024-11-15 20:47:40 +03:00

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