You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the bindings in this repository are not thread safe. This means it's possible to write Python code that's susceptible to race conditions and memory corruption. This is due to the fact that there are no locks in use by this library and the C API does not internally uphold thread-safety invariants, that's left to embedders.
There's some more discussion of this here and here
The text was updated successfully, but these errors were encountered:
Currently the bindings in this repository are not thread safe. This means it's possible to write Python code that's susceptible to race conditions and memory corruption. This is due to the fact that there are no locks in use by this library and the C API does not internally uphold thread-safety invariants, that's left to embedders.
There's some more discussion of this here and here
The text was updated successfully, but these errors were encountered: