(self, payload = None)
| 110 | protocol = 1 |
| 111 | |
| 112 | def __init__(self, payload = None): |
| 113 | self.reset() |
| 114 | if payload: |
| 115 | self.payload = payload |
| 116 | self.payload.initMessage(self) |
| 117 | |
| 118 | def __str__(self): |
| 119 | b = StringIO() |
nothing calls this directly
no test coverage detected