Max Orlov
Max Orlov
fix #2169
I use asyncssh to download files from remote servers/network devices and would like to have an option to safely interrupt process. There is my code: ```python async def download(host: str):...
I create generic class with specifying `__init__` arguments through ParamSpec: ``` from typing import Generic from typing_extensions import ParamSpec P = ParamSpec('P') class CLS(Generic[P]): def __init__(self, *args: P.args, **kwargs: P.kwargs):...
**Describe the bug** Expected that `console.print(end="!")` will print only `!` as regular `python print()`, but it print line break without ending symbol. ```python from rich.console import Console console = Console()...
**Describe the bug** As per https://github.com/containers/podman-compose/issues/167 `podman-compose build` should works with Dockerfile as well as with Containerfile version 1.0.6 works versions 1.1.0 and 1.2.0 give error: `OSError: Dockerfile not found...