-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
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
bpo-34622: Extract asyncio exceptions into a separate module #9141
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to set __module__ = 'asyncio'
in all classes for pickle compatibility. This is needed if you want to unpickle pickles created in 3.8 in older Python versions.
Or set fake __name__ = 'asyncio'
in the asyncio.exceptions module.
I don't know whether it is a good idea to move all exceptions.
from . import base_futures | ||
|
||
|
||
class CancelledError(concurrent.futures.CancelledError): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why define subclasses instead of just making aliases?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main motivation is to improve usability. There's no fundamental reason why these exceptions are derived from concurrent.future
, it happened pretty much by accident. But the problem is that asyncio users see concurrent.future.TimeoutError
exceptions occurring in their programs and have no idea why it's not asyncio.TimeoutError
.
Moreover, we have a plan to make asyncio.CancelledError
a BaseException
in a follow up PR.
Lib/asyncio/futures.py
Outdated
@@ -288,6 +285,17 @@ def _set_result_unless_cancelled(fut, result): | |||
fut.set_result(result) | |||
|
|||
|
|||
def _convert_future_exc(exc): | |||
if type(exc) is concurrent.futures.CancelledError: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you cache the type(exc)
call?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Exception classes are not stored persistently. We are creating new exception classes anyway, no need to use tricks for very rare and weird backward compatibility use cases. A code from python < 3.8 will be unpickled into |
@asvetlov I agree, feel free to merge as soon as CI is green. |
https://bugs.python.org/issue34622