-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-127734: improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
#127735
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
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 @tungol for the PR, and @orsenthil for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Thanks @tungol for the PR, and @orsenthil for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12. |
…WithPriorAuth.__init__` (pythonGH-127735) improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ (cherry picked from commit a03efb5) Co-authored-by: Stephen Morton <git@tungol.org>
…WithPriorAuth.__init__` (pythonGH-127735) improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ (cherry picked from commit a03efb5) Co-authored-by: Stephen Morton <git@tungol.org>
GH-127744 is a backport of this pull request to the 3.13 branch. |
GH-127745 is a backport of this pull request to the 3.12 branch. |
…rWithPriorAuth.__init__` (GH-127735) (#127744) gh-127734: improve signature of `urllib.request.HTTPPasswordMgrWithPriorAuth.__init__` (GH-127735) improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ (cherry picked from commit a03efb5) Co-authored-by: Stephen Morton <git@tungol.org>
…rWithPriorAuth.__init__` (GH-127735) (#127745) gh-127734: improve signature of `urllib.request.HTTPPasswordMgrWithPriorAuth.__init__` (GH-127735) improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__ (cherry picked from commit a03efb5) Co-authored-by: Stephen Morton <git@tungol.org>
…WithPriorAuth.__init__` (python#127735) improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
A small MR to improve signature introspection of
urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
. The parent class takes no arguments, so the pass-through serves no purpose. Currently, typeshed needs to haveurllib.request.HTTPPasswordMgrWithPriorAuth.__init__
on its allowlist for stubtest errors as a result of the poor introspection.urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
#127734