|
|
|
|
|
by jgeralnik
5014 days ago
|
|
> Mypy will get rid of the Global Interpreter Lock (GIL)
>Details of the concurrency model are still undecided, though
Wait, what? There have been numerous attempts to get rid of the GIL, most of which failed miserably. A promise to get rid of the GIL without even deciding on a concurrency model seems a little premature. |
|
The GIL is an optimization though, and so the performance hit from removing it on single threaded code is prohibitive. You can watch any of David Beazley's talks on the GIL for more info.