MCPcopy Index your code
hub / github.com/python/cpython / _T

Function _T

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

Source from the content-addressed store, hash-verified

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

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