Peek a uint64.
(self)
| 89 | return i |
| 90 | |
| 91 | def get_uint64(self): |
| 92 | """Peek a uint64.""" |
| 93 | size_of_uint64 = struct.calcsize("Q") |
| 94 | Q = struct.unpack("Q", self.get_block(size_of_uint64))[0] |
| 95 | return Q |
| 96 | |
| 97 | def get_uint32(self): |
| 98 | """Peek a uint64.""" |
no test coverage detected