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