(self, opener, handler_class)
| 1867 | class MiscTests(unittest.TestCase): |
| 1868 | |
| 1869 | def opener_has_handler(self, opener, handler_class): |
| 1870 | self.assertTrue(any(h.__class__ == handler_class |
| 1871 | for h in opener.handlers)) |
| 1872 | |
| 1873 | def test_build_opener(self): |
| 1874 | class MyHTTPHandler(urllib.request.HTTPHandler): |
no test coverage detected