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

Method load_short_binstring

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

Source from the content-addressed store, hash-verified

1525 dispatch[READONLY_BUFFER[0]] = load_readonly_buffer
1526
1527 def load_short_binstring(self):
1528 len = self.read(1)[0]
1529 data = self.read(len)
1530 self.append(self._decode_string(data))
1531 dispatch[SHORT_BINSTRING[0]] = load_short_binstring
1532
1533 def load_short_binbytes(self):

Callers

nothing calls this directly

Calls 3

_decode_stringMethod · 0.95
readMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected