(obj)
| 404 | return int.from_bytes(data, byteorder='little', signed=True) |
| 405 | |
| 406 | def _T(obj): |
| 407 | cls = type(obj) |
| 408 | module = cls.__module__ |
| 409 | if module in (None, 'builtins', '__main__'): |
| 410 | return cls.__qualname__ |
| 411 | return f'{module}.{cls.__qualname__}' |
| 412 | |
| 413 | |
| 414 | _NoValue = object() |
no outgoing calls
no test coverage detected