Get the byte at the current position, but don't advance position. Returns: A bytes object with a single byte.
()
| 200 | return character |
| 201 | |
| 202 | def peek_byte() -> bytes: |
| 203 | """Get the byte at the current position, but don't advance position. |
| 204 | |
| 205 | Returns: |
| 206 | A bytes object with a single byte. |
| 207 | """ |
| 208 | return encoded[position : position + 1] |
| 209 | |
| 210 | def get_bytes(size: int) -> bytes: |
| 211 | """Get a number of bytes of encode data. |
no outgoing calls
no test coverage detected
searching dependent graphs…