(self, url, proxy=None)
| 69 | ''' |
| 70 | |
| 71 | def get_con(self, url, proxy=None): |
| 72 | scheme, host, port, path = url |
| 73 | conn = self._make_con(scheme, host, port, proxy) |
| 74 | return conn |
| 75 | |
| 76 | def _make_con(self, scheme, host, port, proxy=None): |
| 77 | if "https" != scheme: |