(self)
| 48 | self._socket_path = socket_path |
| 49 | |
| 50 | def connect(self): |
| 51 | s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
| 52 | s.connect(self._socket_path) |
| 53 | self.sock = s |
| 54 | |
| 55 | parsed = urllib.parse.urlparse(request.url) |
| 56 | path = parsed.path |
no outgoing calls
no test coverage detected