MCPcopy
hub / github.com/pandas-dev/pandas / _read_uint64

Method _read_uint64

pandas/io/stata.py:1147–1148  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1145 return struct.unpack(f"{self._byteorder}I", self._path_or_buf.read(4))[0]
1146
1147 def _read_uint64(self) -> int:
1148 return struct.unpack(f"{self._byteorder}Q", self._path_or_buf.read(8))[0]
1149
1150 def _read_int16(self) -> int:
1151 return struct.unpack(f"{self._byteorder}h", self._path_or_buf.read(2))[0]

Callers 2

_get_nobsMethod · 0.95
_read_strlsMethod · 0.95

Calls 1

readMethod · 0.45

Tested by

no test coverage detected