This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import collections.abc | |
import contextlib | |
import functools | |
import types | |
import httpx | |
import sniffio | |
import trio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import collections.abc | |
import contextlib | |
import functools | |
import types | |
import httpx | |
import sniffio | |
import trio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from twisted.internet import defer | |
import curio | |
import concurrent | |
class Interceptor: | |
def __init__(self, send, coro): | |
self._send = send | |
self._coro = coro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__all__ = 'run', | |
import functools | |
import asyncio | |
from asyncio import coroutines | |
from asyncio import events | |
from asyncio import tasks | |
import contextlib | |
@contextlib.contextmanager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import contextlib | |
class _AcknowledgeException: | |
def __init__(self, exception): | |
self.exception = exception | |
class _RecommendGeneratorExit(BaseException): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import types | |
def underline(text): | |
last_line = text.splitlines()[-1] | |
return text + "\n" + "^" * len(last_line) | |
@types.coroutine | |
def _async_yield(v): | |
return (yield v) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import async_timeout | |
import quattro | |
import contextlib | |
import anyio | |
async def main(note, cmgr): | |
try: | |
async with cmgr(-11): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
async def main(): | |
try: | |
async with asyncio.timeout(0): | |
await asyncio.sleep(0) | |
except TimeoutError: | |
print("PASS: great a timeout is here!") | |
else: | |
print("FAILED: expected a timeout") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import psutil | |
import multiprocessing | |
import socket | |
import sys | |
import concurrent.futures | |
ctx = multiprocessing.get_context("spawn") | |
def target(sock): |