Is python's copy
module thread safe?
If not, how should I copy\deepcopy mutable objects in a thread-safe manner in python?
Python's GIL protects bytecodes, not Python statements (see short or long explanations). As both copy.copy()
and copy.deepcopy()
are implemented in python, they are certainly more than a single bytecode, so no, they are not thread safe!
If you must work with multiple threads, and there are many cases you should such as having IO dedicated threads, do what must be done - use threading.Lock()
. Notice you can use the elegant with statement with the lock object.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With