-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
bpo-46676: Make ParamSpec args and kwargs equal to themselves #31203
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-46676: Make ParamSpec args and kwargs equal to themselves #31203
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.
LGTM.
Thanks @GBeauregard for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10. |
Sorry @GBeauregard and @serhiy-storchaka, I had trouble checking out the |
@serhiy-storchaka thanks, I will run the cherry picker for you and open a PR |
…ythonGH-31203) (cherry picked from commit c8b62bb) Co-authored-by: Gregory Beauregard <greg@greg.red>
GH-31210 is a backport of this pull request to the 3.10 branch. |
Accomplished by adding
__eq__
methods in a manner that mirrors similar methods in other parts oftyping.py
.https://bugs.python.org/issue46676