you are viewing a single comment's thread
view the rest of the comments
[–] 20 points 2 years ago (1 child)

While pure Python code should work unchanged, code written in other languages or using the CPython C API may not. The GIL was implicitly protecting a lot of thread-unsafe C, C++, Cython, Fortran, etc. code - and now it no longer does. Which may lead to all sorts of fun outcomes (crashes, intermittent incorrect behavior, etc.).

:tabclose

  • source
  • hideshow 2 child comments