-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-45678: Add functools.singledispatchmethod
tests
#29328
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
Conversation
All buildbot failures but one are on The only buildbot that failed on a non-sqlite test was "AMD64 FreeBSD Shared PR", where |
Thanks @AlexWaygood for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
(cherry picked from commit 5a14929) Co-authored-by: Alex Waygood <[email protected]>
GH-29390 is a backport of this pull request to the 3.10 branch. |
(cherry picked from commit 5a14929) Co-authored-by: Alex Waygood <[email protected]>
GH-29391 is a backport of this pull request to the 3.9 branch. |
…od` bug This PR fixes a bug in the 3.9 branch where ``functools.singledispatchmethod`` did not properly wrap attributes such as ``__name__``, ``__doc__`` and ``__module__`` of the target method. It also backports tests already merged into the 3.11 and 3.10 branches in #python#29328 and python#29390.
As discussed in #29391, the attempted backport of this PR by @miss-islington to Python 3.9 exposed a bug in that branch. A new bugfix/backport PR is here: #29394 |
…od` bug (GH-29394) This PR fixes a bug in the 3.9 branch where ``functools.singledispatchmethod`` did not properly wrap attributes such as ``__name__``, ``__doc__`` and ``__module__`` of the target method. It also backports tests already merged into the 3.11 and 3.10 branches in #29328 and #29390. Co-authored-by: Łukasz Langa <[email protected]>
https://bugs.python.org/issue45678