(self, name)
| 50 | return self.sock.send(data) |
| 51 | |
| 52 | def __getattr__(self, name): |
| 53 | return getattr(self.sock, name) |
| 54 | |
| 55 | async def tcp_server(address, handler): |
| 56 | sock = GenSocket(socket(AF_INET, SOCK_STREAM)) |
nothing calls this directly
no outgoing calls
no test coverage detected