(self, name)
| 46 | return self.sock.send(data) |
| 47 | |
| 48 | def __getattr__(self, name): |
| 49 | return getattr(self.sock, name) |
| 50 | |
| 51 | def tcp_server(address, handler): |
| 52 | sock = GenSocket(socket(AF_INET, SOCK_STREAM)) |
nothing calls this directly
no outgoing calls
no test coverage detected