| 1680 | self.recorded.append(info) |
| 1681 | |
| 1682 | class TestDigestAuthHandler(urllib.request.HTTPDigestAuthHandler): |
| 1683 | def http_error_401(self, *args, **kwds): |
| 1684 | self.parent.record("digest") |
| 1685 | urllib.request.HTTPDigestAuthHandler.http_error_401(self, |
| 1686 | *args, **kwds) |
| 1687 | |
| 1688 | class TestBasicAuthHandler(urllib.request.HTTPBasicAuthHandler): |
| 1689 | def http_error_401(self, *args, **kwds): |
no outgoing calls
searching dependent graphs…