(self, *args, **kwargs)
| 147 | self, sock, client_prog, timeout) |
| 148 | |
| 149 | def unix_server(self, *args, **kwargs): |
| 150 | return self.tcp_server(*args, family=socket.AF_UNIX, **kwargs) |
| 151 | |
| 152 | def unix_client(self, *args, **kwargs): |
| 153 | return self.tcp_client(*args, family=socket.AF_UNIX, **kwargs) |
nothing calls this directly
no test coverage detected