File: concurrency.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
from typing import Any

from ._compat_py3k import asynccontextmanager as asynccontextmanager
from ._concurrency_py3k import (
    AsyncAdaptedLock as AsyncAdaptedLock,
    await_fallback as await_fallback,
    await_only as await_only,
    greenlet_spawn as greenlet_spawn,
    is_exit_exception as is_exit_exception,
)

have_greenlet: bool
asyncio: Any | None