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 300.8ms across 14,015 title embeddings via pgvector HNSW
- Show HN: I built Wool, a lightweight distributed Python runtime bzurak · 13 pts · March 14, 2026 · 60% similar
- Show HN: I made a Clojure-like language in Go, boots in 7ms marcingas · 132 pts · May 09, 2026 · 53% similar
- Show HN: Rust but Lisp thatxliner · 113 pts · May 09, 2026 · 52% similar
- Show HN: Tiny – An interpeted dynamic langauge with inline Go native functions confis · 38 pts · June 20, 2026 · 50% similar
- Show HN: A stateful UI runtime for reactive web apps in Go derstruct · 12 pts · April 14, 2026 · 50% 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?