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

Function _unpack_uint64

Lib/importlib/_bootstrap_external.py:84–87  ·  view source on GitHub ↗

Convert 8 bytes in little-endian to an integer.

(data)

Source from the content-addressed store, hash-verified

82
83
84def _unpack_uint64(data):
85 """Convert 8 bytes in little-endian to an integer."""
86 assert len(data) == 8
87 return int.from_bytes(data, 'little')
88
89def _unpack_uint32(data):
90 """Convert 4 bytes in little-endian to an integer."""

Callers 1

_read_directoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…