Re: Does Python Need Virtual Threads? (Posting On Python-List Prohibited)

Lawrence D'Oliveiro <[email protected]> Sat, 14 Jun 2025 23:10:55 -0000 (UTC)
Newsgroups comp.lang.python
Organization A noiseless patient Spider
Message-ID <[email protected]>
On Sat, 14 Jun 2025 04:29:07 -0700, Paul Rubin wrote:

> Try using Erlang a little,  It has preemptive lightweight processes and
> it is great.  Much better than async/await imho.

Those are called “threads”. Python already has those, and the ongoing 
“noGIL” project will make them even more useful.

There’s a reason why the old coroutine concept was brought back (albeit in 
this new “stackless” guise): because threads are not the best answer to 
everything.