Method
__init__
(self, protocol, host, port, *args, **kwds)
Source from the content-addressed store, hash-verified
| 281 | |
| 282 | class ReplayingConnection(Connection): |
| 283 | def __init__(self, protocol, host, port, *args, **kwds): |
| 284 | self.__file = self.openFile("r") |
| 285 | self.__protocol = protocol |
| 286 | self.__host = host |
| 287 | self.__port = port |
| 288 | self.__stream = False |
| 289 | self.response_headers = CaseInsensitiveDict() |
| 290 | |
| 291 | self.__cnx = self._realConnection(host, port, *args, **kwds) |
| 292 | |
| 293 | @property |
| 294 | def host(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected