(self)
| 117 | FAMILY = socket.AF_INET6 |
| 118 | |
| 119 | def __str__(self): |
| 120 | (host, port, _, _) = self.sock.getsockname() |
| 121 | return "http://[%s]:%d" % (host, port) |
| 122 | |
| 123 | |
| 124 | class UnixSocket(BaseSocket): |
nothing calls this directly
no test coverage detected