Hacker News new | ask | show | jobs
by maxbond 332 days ago
Python's asyncio is single threaded. If you didn't send them into a different thread, the entire event loop would block, and it would degenerate to a fully synchronous single threaded program with additional overhead.