Y
Hacker News
new
|
ask
|
show
|
jobs
by
0xDEADFED5
622 days ago
Can I use PyMutex from my own Python code?
1 comments
ngoldbaum
622 days ago
No, it wouldn’t make sense to. Use threading.Lock for that. PyMutex is available in the CPython C API.
link