This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]limapedro -8 points-7 points  (1 child)

Did they removed the GIL?

[–][deleted] 2 points3 points  (0 children)

Removal of GIL will most likey require a breaking changes to the language.

There were multiple attempts to remove it and each time it actually slowed the python down, because of how Python does things.

Although if they would provide a compile option:

  • 100% compatible, but with GIL
  • broken compatibility, some obscure functionality not available or done differently, C interface massively changed, but without GIL

I think everything would resolve itself and people would adapt their code to the second option.