I hereby claim:
- I am frostming on github.
- I am frostming (https://keybase.io/frostming) on keybase.
- I have a public key whose fingerprint is 1A21 DF26 CF48 7A9B 9E9B C482 7B28 4C8F CC08 5EFF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| from __future__ import annotations | |
| import re | |
| from typing import Any, Never | |
| class JSONParseError(Exception): | |
| pass | |
| import asyncio | |
| import time | |
| from typing import Any, Awaitable, Callable, TypeVar | |
| Callback = TypeVar("Callback", bound=Callable[[], Any]) | |
| class Context: | |
| def _cancel(self, msg: str | None = None) -> None: | |
| """Cancel the current task.""" |