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

Method load_frame

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

Source from the content-addressed store, hash-verified

1347 dispatch[PROTO[0]] = load_proto
1348
1349 def load_frame(self):
1350 frame_size, = unpack('<Q', self.read(8))
1351 if frame_size > sys.maxsize:
1352 raise ValueError("frame size > sys.maxsize: %d" % frame_size)
1353 self._unframer.load_frame(frame_size)
1354 dispatch[FRAME[0]] = load_frame
1355
1356 def load_persid(self):

Callers

nothing calls this directly

Calls 3

unpackFunction · 0.90
readMethod · 0.45
load_frameMethod · 0.45

Tested by

no test coverage detected