-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
Backport performance improvements to runtime-checkable protocols #137
Conversation
tvars = typing._collect_type_vars(cls.__orig_bases__) | ||
tvars = _collect_type_vars(cls.__orig_bases__) |
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.
This change was required because typing._collect_type_vars
doesn't exist on Python 3.11 (but typing_extensions._collect_type_vars
does), and with this PR, we now re-implement Protocol
on <=3.11, whereas we previously only re-implemented it on <=3.9
def _is_unpack(obj): | ||
return get_origin(obj) is Unpack |
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.
This change was required in order for tests to pass on Python 3.11. Without this change, a function somewhere was failing with NameError
when the tests were run on Python 3.11, because the function was calling _is_unpack()
, and we previously only defined _is_unpack
on Python <=3.10.
We could possibly also backport "fast versions" of the runtime-checkable protocols that the As a result of the performance improvements I'm backporting here, |
This change seems to have broken the latest version of pydash when used with typing-extensions 4.6.0. There's a bug report about this here: dgilland/pydash#197. I did a bisect of every change between typing-extensions 4.5.0 and 4.6.0, and this was pointed out as the culprit. I've had a look at the code changes here but don't have a good enough grasp of what's going wrong that is causing this to fail. This seems to be the relevant Pydash code that relates to the error: |
Cheers! |
This PR backports the following CPython PRs (all by me), which, taken together, substantially improve the performance of
isinstance()
checks against runtime-checkable protocols on Python 3.12 compared to Python 3.11:_get_protocol_attrs
twice in_ProtocolMeta.__instancecheck__
cpython#103141typing._get_protocol_attrs
cpython#103152_ProtocolMeta.__instancecheck__
cpython#103159_get_protocol_attrs
and_callable_members_only
at protocol class creation time, not duringisinstance()
checks cpython#103160typing._ProtocolMeta.__instancecheck__
cpython#103280Here is a benchmark script:
Benchmark results on `main`, using Python 3.11
Benchmark results with this PR branch, using Python 3.11
Note that if we choose to backport python/cpython#103034 (using
inspect.getattr_static
instead ofgetattr
in_ProtocolMeta.__instancecheck__
), it will undo a lot of the performance improvements that this PR brings. I leave the decision of whether or not to backport that PR to another PR/issue.