(it)
| 1304 | return val |
| 1305 | |
| 1306 | def read_signed_varint(it): |
| 1307 | uval = read_varint(it) |
| 1308 | if uval & 1: |
| 1309 | return -(uval >> 1) |
| 1310 | else: |
| 1311 | return uval >> 1 |
| 1312 | |
| 1313 | def parse_location_table(code): |
| 1314 | line = code.co_firstlineno |
no test coverage detected
searching dependent graphs…