Let's say CPython can gain a JIT or get rid of the GIL, but not both. Which would you want to have more?
JIT
No GIL
Poll ended at .
No GIL. It would mean being able to use (pure) Python for parallellizable tasks without having to launch multiple processes of it and set up IPC for synchronizing the task execution.
If Python were too slow for me (and a JIT would help), I could try to solve that by using a more powerful server or adding more servers.