massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / unittest / async_case.pyi
1 import sys
2 from typing import Any, Awaitable, Callable
3
4 from .case import TestCase
5
6 if sys.version_info >= (3, 8):
7     class IsolatedAsyncioTestCase(TestCase):
8         async def asyncSetUp(self) -> None: ...
9         async def asyncTearDown(self) -> None: ...
10         def addAsyncCleanup(self, __func: Callable[..., Awaitable[Any]], *args: Any, **kwargs: Any) -> None: ...