(obj)
| 420 | return int.from_bytes(data, byteorder='little', signed=True) |
| 421 | |
| 422 | def _T(obj): |
| 423 | cls = type(obj) |
| 424 | module = cls.__module__ |
| 425 | if module in (None, 'builtins', '__main__'): |
| 426 | return cls.__qualname__ |
| 427 | return f'{module}.{cls.__qualname__}' |
| 428 | |
| 429 | |
| 430 | _NoValue = object() |
no outgoing calls
no test coverage detected