Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apparently, in pypy, "signal.set_wakeup_fd" doesn't have the keyword argument warn_on_full_buffer. Here is a simple script to reproduce this problem: import trio async def handler(stream: trio.abc.Stream): await stream.receive_some(1) async def trio_main(): socket_listeners = await trio.serve_tcp(handler) trio.run(trio_main)
- Loading branch information