does it have a GIL
replies(2):
I get that this must be one aspect of the necessity of the GIL but I mean, C++ also has eager free behavior due to RAII and threads are working fine there, as long as you know what you're doing. Perhaps that's the rub though, it's pretty easy to crash/deadlock in C++ and we blame the programmer rather than the language.
In Python, by contrast, all variables default to object references, and so nearly everything you do involves updating a refcount.