Anders E. Andersen
Anders E. Andersen
Deleted some comments. As @tomchristie pointed out, they were not productive.
You should think long and hard before trying to detect async functions since it is impossible to avoid false negatives. https://github.com/python-trio/trio/issues/635 https://github.com/vxgmichel/aiostream/issues/53 I think it is better to be explicit....
This link is in several of files spread across multiple repos in the org. [Search link](https://github.com/search?q=org%3Atrailsjs+http%3A%2F%2Ftrailsjs.io%2Fdoc%2Fconfig%2Froutes.js&type=Code).
I think if a trailpack wants to support multiple orms and multiple web servers, it should be the trailpacks responsibility to abstract away api differences. For example in the python...
Ok. I have read through #35 It does look like the same basic idea. It behaves a bit differently from what I need. If I understand it correctly, listeners that...
My broadcast implementation is not safe, I have found. Here is a simple example that causes a deadlock: ```python import string import trio from aiostream import stream from broadcast import...
I managed to get it working. Although I was not able to exactly analyze how the deadlocks occured, I am able to gather this much: First off, there is lock...
Here is my current implementation. ```python def broadcast(aiter): send_channels = [] lock = trio.Lock() id = count() async def listen(): send_channel, receive_channel = trio.open_memory_channel(math.inf) send_channels.append(send_channel) my_id = next(id) try: log.debug('Listener...
After consumer 1 finishes, this crashes for me with: `AttributeError: 'generator' object has no attribute 'cr_await'` But if I understand you correctly, there shouldn't be anything inherently wrong with trying...
Specifically for signing requests to cryptocurrency exchange apis I need the body to be available in the request object. Edit: The body is generated here, but isn't added as an...