(self, ip="127.0.0.1", port=1234)
| 302 | """ |
| 303 | |
| 304 | def __init__(self, ip="127.0.0.1", port=1234): |
| 305 | # type: (str, int) -> None |
| 306 | Drain.__init__(self) |
| 307 | self.ip = ip |
| 308 | self.port = port |
| 309 | |
| 310 | def push(self, msg): |
| 311 | # type: (Packet) -> None |
no outgoing calls
no test coverage detected