(self)
| 303 | check(f'<biginteger>{s}</biginteger>', None) |
| 304 | |
| 305 | def test_get_host_info(self): |
| 306 | # see bug #3613, this raised a TypeError |
| 307 | transp = xmlrpc.client.Transport() |
| 308 | self.assertEqual(transp.get_host_info("user@host.tld"), |
| 309 | ('host.tld', |
| 310 | [('Authorization', 'Basic dXNlcg==')], {})) |
| 311 | |
| 312 | def test_ssl_presence(self): |
| 313 | try: |
nothing calls this directly
no test coverage detected