https://github.com/python/cpython/commit/5f5624ddc80ddab2edd0941a5117136a4b879a30
commit: 5f5624ddc80ddab2edd0941a5117136a4b879a30
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: orsenthil <[email protected]>
date: 2024-12-08T12:16:03-08:00
summary:

[3.12] gh-127734: improve signature of 
`urllib.request.HTTPPasswordMgrWithPriorAuth.__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 a03efb533a58fd13fb0cc7f4a5c02c8406a407bd)

Co-authored-by: Stephen Morton <[email protected]>

files:
M Lib/urllib/request.py

diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 9a559f44152be5..c7ded0f67fc67e 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -903,9 +903,9 @@ def find_user_password(self, realm, authuri):
 
 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)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to