Peek a uint64.
(self)
| 95 | return Q |
| 96 | |
| 97 | def get_uint32(self): |
| 98 | """Peek a uint64.""" |
| 99 | size_of_uint64 = struct.calcsize("I") |
| 100 | u = struct.unpack("I", self.get_block(size_of_uint64))[0] |
| 101 | return u |
| 102 | |
| 103 | def get_bool(self): |
| 104 | """Peek a bool.""" |
no test coverage detected