MCPcopy Index your code
hub / github.com/python/cpython / load_short_binstring

Method load_short_binstring

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

Source from the content-addressed store, hash-verified

1556 dispatch[READONLY_BUFFER[0]] = load_readonly_buffer
1557
1558 def load_short_binstring(self):
1559 len = self.read(1)[0]
1560 data = self.read(len)
1561 self.append(self._decode_string(data))
1562 dispatch[SHORT_BINSTRING[0]] = load_short_binstring
1563
1564 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