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

Method load_long1

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

Source from the content-addressed store, hash-verified

1410 dispatch[LONG[0]] = load_long
1411
1412 def load_long1(self):
1413 n = self.read(1)[0]
1414 data = self.read(n)
1415 self.append(decode_long(data))
1416 dispatch[LONG1[0]] = load_long1
1417
1418 def load_long4(self):

Callers

nothing calls this directly

Calls 3

decode_longFunction · 0.85
readMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected