Move library stubs to stubs/ for typeshed consistency

This commit is contained in:
Danielle McLean 2023-11-27 10:56:34 +11:00
parent da90e64dac
commit d4df24b7aa
Signed by: 00dani
GPG key ID: 52C059C3B22A753E
3 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1 @@
from .eventloop import CoreFoundationEventLoop as CoreFoundationEventLoop

View file

@ -0,0 +1,4 @@
import asyncio
class CoreFoundationEventLoop(asyncio.SelectorEventLoop):
def __init__(self, console_app: bool = ..., *eventloop_args) -> None: ...