Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
gh-127734: improve signature ofurllib.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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
orsenthil left a comment
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
a03efb5 intopython:mainUh oh!
There was an error while loading.Please reload this page.
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 commita03efb5)Co-authored-by: Stephen Morton <git@tungol.org>
…WithPriorAuth.__init__` (pythonGH-127735)improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__(cherry picked from commita03efb5)Co-authored-by: Stephen Morton <git@tungol.org>
GH-127744 is a backport of this pull request to the3.13 branch. |
GH-127745 is a backport of this pull request to the3.12 branch. |
…WithPriorAuth.__init__` (python#127735)improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
Uh oh!
There was an error while loading.Please reload this page.
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