(self, payload = None)
| 24 | protocol = 2 |
| 25 | |
| 26 | def __init__(self, payload = None): |
| 27 | self.reset() |
| 28 | if payload: |
| 29 | self.payload = payload |
| 30 | self.payload.initMessage(self) |
| 31 | |
| 32 | def __str__(self): |
| 33 | b = StringIO() |
nothing calls this directly
no test coverage detected