Comment on The original ABC language, Python's predecessor (1991)Comments−perrohunter9moWhere is the GIL in this?−eru9moYou only need the GIL in the first place, when you are doing multi-threading.Python only got its own GIL in version 1.5 of CPython.
Comments
Where is the GIL in this?
You only need the GIL in the first place, when you are doing multi-threading.
Python only got its own GIL in version 1.5 of CPython.