mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
gh-127734: improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
(#127735)
improve signature of urllib.request.HTTPPasswordMgrWithPriorAuth.__init__
This commit is contained in:
parent
7f8ec52302
commit
a03efb533a
1 changed files with 2 additions and 2 deletions
|
@ -876,9 +876,9 @@ class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
|
|||
|
||||
class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
def __init__(self):
|
||||
self.authenticated = {}
|
||||
super().__init__(*args, **kwargs)
|
||||
super().__init__()
|
||||
|
||||
def add_password(self, realm, uri, user, passwd, is_authenticated=False):
|
||||
self.update_authenticated(uri, is_authenticated)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue