Luffbee

Results 19 issues of Luffbee

### What happened? I see the latest release support unidirectional stream now, but the send/recv states are still init like bidirectional stream, which is not right. Unidirectional stream can only...

Code to reproduce: ``` python import asyncio as aio import logging import sys import asyncssh as assh async def main(): async with assh.connect("localhost", known_hosts=None) as conn: await conn.run("cat ~/large.txt", check=True,...

### What happened? xqc_stream_close after DATA_RECVD state may cause error: https://github.com/alibaba/xquic/blob/917ac4a9bfaf4bf5293b1413681b66c36a9d97ad/src/transport/xqc_stream.c#L619 ### Steps To Reproduce call xqc_stream_close after DATA_RECVD state. ### Relevant log output _No response_

### What happened? > [8.1.4. ](https://www.rfc-editor.org/rfc/rfc9000.html#section-8.1.4)[Address Validation Token Integrity](https://www.rfc-editor.org/rfc/rfc9000.html#name-address-validation-token-in) An address validation token MUST be difficult to guess. Including a random value with at least 128 bits of entropy in...

The following code can run, but pyright will report errors. These errors are annoying, it would be great if they could be eliminated. Thanks for this great library! ``` python...

help wanted
typing bug

It will be good to support an API like `MapNonNil` which will return an empty slices instead of `nil`. The `nil` slice may be unexpected in some scenarios like json...

**Describe the bug** I'm trying to write a generic container class `Container[T]`, and support method `do_map(self, func: Callable[[T], W]) -> Container[W]` that do a transform like `map()`. For some reasons,...

bug

The first plot is not showing in vscode interactive window, using the "notebook_connected" renderer. I'm using the following code (note the `# %%` is used to enable vscode interactive window):...

bug
P1

An exception may be chained with the `raise exc from e` grammar, which sets the `exc.__cause__` as `e`. Currently, `print_exc` does not print information about the cause exception. It will...