(self, method, url, *args, **kwargs)
| 110 | self.mount('https://', adapter) |
| 111 | |
| 112 | def request(self, method, url, *args, **kwargs): |
| 113 | if not url.startswith('http'): |
| 114 | raise ValueError('Missing "http:" or "https:". Use a fully qualified URL, eg "http://testserver%s"' % url) |
| 115 | return super().request(method, url, *args, **kwargs) |
| 116 | |
| 117 | else: |
| 118 | def RequestsClient(*args, **kwargs): |