Peek a block with the size as the prefix bytes.
(self)
| 56 | return size |
| 57 | |
| 58 | def get_sized_block(self): |
| 59 | """Peek a block with the size as the prefix bytes.""" |
| 60 | size = self.get_size() |
| 61 | block = self.get_block(size) |
| 62 | return block |
| 63 | |
| 64 | def get_bytes(self): |
| 65 | """Peek bytes""" |