(it)
| 655 | return ord(next(it)) |
| 656 | |
| 657 | def read_varint(it): |
| 658 | b = read(it) |
| 659 | val = b & 63; |
| 660 | shift = 0; |
| 661 | while b & 64: |
| 662 | b = read(it) |
| 663 | shift += 6 |
| 664 | val |= (b&63) << shift |
| 665 | return val |
| 666 | |
| 667 | def read_signed_varint(it): |
| 668 | uval = read_varint(it) |
no test coverage detected
searching dependent graphs…