Hacker News new | ask | show | jobs
by antoinealb 3859 days ago
To be fair the GIL is only an issue if you are doing CPU bound thread-based parallelism in Python. There are way to do real parallelism in Python, for example via several processes.