MCPcopy Index your code
hub / github.com/RustPython/RustPython / _T

Function _T

Lib/pickle.py:406–411  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

404 return int.from_bytes(data, byteorder='little', signed=True)
405
406def _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()

Callers 7

saveMethod · 0.85
save_reduceMethod · 0.85
save_tupleMethod · 0.85
_batch_appendsMethod · 0.85
_batch_setitemsMethod · 0.85
save_setMethod · 0.85
save_frozensetMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected