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

Method load_binint

Lib/pickle.py:1393–1394  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1391 dispatch[INT[0]] = load_int
1392
1393 def load_binint(self):
1394 self.append(unpack('<i', self.read(4))[0])
1395 dispatch[BININT[0]] = load_binint
1396
1397 def load_binint1(self):

Callers

nothing calls this directly

Calls 3

unpackFunction · 0.90
appendMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected