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
WARNING: This command is only meant for debugging. Do not use this with automation for parsing and getting these details, since the output and options of this command may change without notice. | |
pip version: pip 24.2 from C:\hostedtoolcache\windows\PyPy\3.10.14\x86\lib\site-packages\pip (python 3.10) | |
sys.version: 3.10.14 (39dc8d3c85a7, Aug 27 2024, 14:33:33) | |
[PyPy 7.3.17 with MSC v.1929 64 bit (AMD64)] | |
sys.executable: C:\hostedtoolcache\windows\PyPy\3.10.14\x86\python.exe | |
sys.getdefaultencoding: utf-8 | |
sys.getfilesystemencoding: utf-8 | |
locale.getpreferredencoding: UTF-8 | |
sys.platform: win32 | |
sys.implementation: |
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
[run] | |
branch = True | |
parallel = True | |
concurrency = multiprocessing,thread | |
source_pkgs = demo |
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 pathlib | |
import sys | |
import tomllib | |
from collections.abc import Iterable | |
def main() -> None: | |
project = pathlib.Path("pyproject.toml") | |
module = tomllib.loads(project.read_text())["tool"]["mypy"]["overrides"][0][ | |
"module" |
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 | |
async def child(sock): | |
try: | |
with contextlib.closing(sock): | |
await asyncio.sleep(2) | |
except Exception as e: | |
print(f"child task got error: {type(e)=} {e=}") | |
raise |
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 objgraph | |
import asyncio | |
READY = object() | |
import weakref | |
import asyncio | |
import gc | |
import logging |
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 |
NewerOlder