(self, method)
| 77 | self.gsock = _VirtualGlobalSocket(self) |
| 78 | |
| 79 | def _check_err(self, method): |
| 80 | method_error = self.errors.get(method) |
| 81 | if method_error: |
| 82 | raise method_error |
| 83 | |
| 84 | def connect(self, address): |
| 85 | return self._connect(address, False) |