(write_context, value: int)
| 375 | |
| 376 | |
| 377 | def _write_var_uint64(write_context, value: int): |
| 378 | try: |
| 379 | write_context.write_var_uint64(value) |
| 380 | except OverflowError: |
| 381 | write_context.write_var_uint64(value - _UINT64_MOD) |
| 382 | |
| 383 | |
| 384 | def _read_decimal_parts(read_context) -> Tuple[int, int]: |
no test coverage detected