(self, value)
| 83 | return self._sock.getsockbyname() |
| 84 | |
| 85 | def settimeout(self, value): |
| 86 | if value == 0: |
| 87 | return |
| 88 | raise ValueError( |
| 89 | 'settimeout(): only 0 timeout is allowed on transport sockets') |
| 90 | |
| 91 | def gettimeout(self): |
| 92 | return 0 |
no outgoing calls
no test coverage detected