(self)
| 53 | STATES = (SEND_INPUT, COLLECT) = range(2) |
| 54 | |
| 55 | def __init__(self): |
| 56 | self.data = "" |
| 57 | self.delayed_call = None |
| 58 | self.states = iter(self.STATES) |
| 59 | self.state = next(self.states) |
| 60 | |
| 61 | def outReceived(self, data): |
| 62 | self.data += data.decode(encoding) |
nothing calls this directly
no outgoing calls
no test coverage detected