We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ddf38b commit e08494fCopy full SHA for e08494f
uvloop/__init__.pyi
@@ -5,10 +5,25 @@ from collections.abc import Callable, Coroutine
5
from contextvars import Context
6
from typing import Any, TypeVar
7
8
-
9
_T = TypeVar('_T')
10
11
+class Loop(AbstractEventLoop):
12
+ ...
13
+
14
15
+def new_event_loop() -> Loop:
16
17
18
19
+def install() -> None:
20
21
22
23
+class EventLoopPolicy(asyncio.AbstactEventLoopPolicy):
24
25
26
27
def run(
28
main: Coroutine[Any, Any, _T],
29
*,
0 commit comments