|
|
|
|
|
by Jorge1o1
1227 days ago
|
|
You can still have thread safety issues with the GIL in place, because globals and other data is shared between threads. For example, you can put a dictionary at the module level, thread A can set a key in that dictionary like “name”, thread B can overwrite it, and then thread A comes back, does dct[“name”] and gets an unexpected answer. This is a relatively easy mistake to make, a lot of python code has module level variables. |
|