(self, timeout)
| 107 | self.welcome = self._getresp() |
| 108 | |
| 109 | def _create_socket(self, timeout): |
| 110 | if timeout is not None and not timeout: |
| 111 | raise ValueError('Non-blocking socket (timeout=0) is not supported') |
| 112 | return socket.create_connection((self.host, self.port), timeout) |
| 113 | |
| 114 | def _putline(self, line): |
| 115 | if self._debugging > 1: print('*put*', repr(line)) |
no test coverage detected