Jordan Speicher

Results 19 issues of Jordan Speicher

Hello, I think it'd be great to leverage https://anyio.readthedocs.io/ so that code that relies on this package can use asyncio or [trio](https://trio.readthedocs.io) as the async backend. An example would be...

I have a need to allow players to "baggage" with other players when signing up for a league. I'm not sure if this term is different where you are, but...

It seems currently impossible to re-raise a received signal on asyncio. ```python import anyio import signal async def other_signal_thing(): with anyio.open_signal_receiver(signal.SIGINT) as signals: async for signum in signals: print("other handler...

bug
asyncio

testinfra 1.14.1 ansible 2.6.3 (really any version) It seems that if a host is unreachable with the `ansible` backend, you might get a traceback like: ``` =================================== FAILURES=================================== test_apt_transport_https_is_installed[ansible://molecule-test-bionic] host...

bug

Hi, I'm trying to access a server which is running Zebi OS (which is on top of Solaris). When using `smbclient` it shows: ``` internal_resolve_name: returning 1 addresses: [redac]:0 Connecting...

I don't get `async_websocket.py` installed in releases after 0.3.5. ``` $ pip install 'ws4py' -U ... Successfully installed ws4py-0.4.2 (venv) $ ls venv/lib/python3.5/site-packages/ws4py/ client exc.py __init__.py messaging.py server utf8validator.py compat.py...

Hello, Just wondering if you've heard of the awesome library https://anyio.readthedocs.io/en/stable/ ? It could replace the dual asyncio/trio implementations with one. I'd consider contributing if this is a desired change.

Update the version of snapclient and the kernels for RPi, consistent with buildroot 2021.11

Hi, I just wanted to document that there's some new features in snapcast 0.16.0 that would be great to integrate into this project. See https://github.com/badaix/snapcast/blob/master/changelog.md#version-0160 Notable changes: * Streams can...

JSON-RPC 2.0 spec: > 6 Batch > To send several Request objects at the same time, the Client MAY send an Array filled with Request objects. This currently (aiohttp-json-rpc 0.12.1)...

feature request