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
There are now a number of deprecated aliases for TimeoutError:
TimeoutError
https://docs.python.org/3/library/socket.html#socket.timeout
Changed in version 3.10: This class was made an alias of TimeoutError.
https://docs.python.org/3/library/asyncio-exceptions.html#asyncio.TimeoutError
Changed in version 3.11: This class was made an alias of TimeoutError.
https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.TimeoutError
The text was updated successfully, but these errors were encountered:
fix asottile#819, TimoutError aliases
8a8e164
* socket.timeout 3.10+ * asyncio.TimeoutError 3.11+ * concurrent.futures.TimeoutError 3.11+
#885 handles everything except for concurrent.futures.TimeoutError
concurrent.futures.TimeoutError
Sorry, something went wrong.
No branches or pull requests
There are now a number of deprecated aliases for
TimeoutError
:https://docs.python.org/3/library/socket.html#socket.timeout
https://docs.python.org/3/library/asyncio-exceptions.html#asyncio.TimeoutError
https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.TimeoutError
The text was updated successfully, but these errors were encountered: