We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It says:
fasteners.lock.try_lock(*args, **kwds)
but in fact, it ignores any arguments apart from the lock.
def try_lock(lock):
(found while trying to set the delay/max_delay for a context manager)
The text was updated successfully, but these errors were encountered:
Thanks for the report @howardjones!
Indeed, the docs are off, but furthermore, none of the thread locks support timeouts (and consequently delay/max_delay), so you are out of luck.
Sorry, something went wrong.
Actually, not out of luck :) If you need good thread locks, use this lib instead: https://github.com/elarivie/pyReaderWriterLock. I have not tried it, but it has everything I could ever wish.
No branches or pull requests
It says:
but in fact, it ignores any arguments apart from the lock.
(found while trying to set the delay/max_delay for a context manager)
The text was updated successfully, but these errors were encountered: