Show HN: Runloom – Go-style coroutines for Python free-threaded
Uptrenda
44 points
27 comments
July 10, 2026
Related Discussions
Found 5 related stories in 62.4ms across 5,215 title embeddings via pgvector HNSW
- Show HN: The0 – self-hosted runtime for trading bots, bring your own language mercutio93 · 12 pts · July 20, 2026 · 48% similar
- Show HN: Openleetcode – Local LeetCode runner where tests live in the repo therepanic · 59 pts · August 18, 2026 · 47% similar
- Show HN: Agent in 9 Lines Python tosh · 17 pts · July 22, 2026 · 45% similar
- Show HN: Cynative – Read-only CLI in Go that explains your live infrastructure szin · 14 pts · July 28, 2026 · 44% similar
- Show HN: Clx – Compile Lua to Native Executables Through C++20 _samt_ · 31 pts · July 11, 2026 · 44% similar
Discussion Highlights (7 comments)
ksdme9
How does this compare with gevent?
Onavo
Is Python about to have its Project Loom moment?
hsnewman
Why not just use Go?
simonw
This is an intimidating amount of code! 12,303 lines of C and 244,740 lines of Python, which looks to be a ton of monkeypatching plus huge amounts of test code. Only one commit added all of that, just two hours ago. The published numbers are impressive, but its hard to evaluate how much trust can be put in a project of this complexity at this early stage.
ebeirne
This is a seriously impressive project. I see your pitch is M:N work-stealing across real cores on free-threaded 3.13t/3.14t which i think is only possible because nogil now exists. which makes gevent seem lackluster in comparison
bigwhite
Why not just use Go, haha?
OutOfHere
Does your code have a significant dependency on the version of Python? How easy will it be for you to maintain your code to support Python 3.15, 3.16, etc.? Is it too dependent on the implementation of Python 3.13 and 3.14 or its low level aspects? What is all the Python code doing?