Are Python ints thread-safe? I cannot find a definitive answer for this from Google.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Like the other have said, Python objects are mostly thread-safe. Although you will need to use Locks in order to protect an object in a place that require it to go through multiple changes before being usable again. |
|||
|
|
|
Yes, they are immutable, just like strings. The code In case it's not clear, things that are immutable are automatically thread safe because there is no way for two threads to try to modify the same thing at the same time. They can't be modified you see, because they're immutable. Example from the interpreter:
|
|||||||||||||
|