(it)
| 1294 | return next(it) |
| 1295 | |
| 1296 | def read_varint(it): |
| 1297 | b = read(it) |
| 1298 | val = b & 63; |
| 1299 | shift = 0; |
| 1300 | while b & 64: |
| 1301 | b = read(it) |
| 1302 | shift += 6 |
| 1303 | val |= (b&63) << shift |
| 1304 | return val |
| 1305 | |
| 1306 | def read_signed_varint(it): |
| 1307 | uval = read_varint(it) |
no test coverage detected
searching dependent graphs…