Fix links to old SF bugs (#95648)

This commit is contained in:
Serhiy Storchaka 2022-08-04 19:12:35 +03:00 committed by GitHub
parent 5b6acbaa20
commit ab8a5beb5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 23 additions and 23 deletions

View file

@ -1556,11 +1556,11 @@ class HandlerTests(unittest.TestCase):
def test_basic_and_digest_auth_handlers(self):
# HTTPDigestAuthHandler raised an exception if it couldn't handle a 40*
# response (http://python.org/sf/1479302), where it should instead
# response (https://bugs.python.org/issue1479302), where it should instead
# return None to allow another handler (especially
# HTTPBasicAuthHandler) to handle the response.
# Also (http://python.org/sf/14797027, RFC 2617 section 1.2), we must
# Also (https://bugs.python.org/issue14797027, RFC 2617 section 1.2), we must
# try digest first (since it's the strongest auth scheme), so we record
# order of calls here to check digest comes first:
class RecordingOpenerDirector(OpenerDirector):