(self, fmt, value)
| 28 | self.write_uint32(msgInfo.sequence) |
| 29 | |
| 30 | def _write(self, fmt, value): |
| 31 | self._buffer += struct.pack(fmt, value) |
| 32 | self._cursor += struct.calcsize(fmt) |
| 33 | |
| 34 | def write_bool(self, value): |
| 35 | self._write('<?', value) |
no outgoing calls
no test coverage detected