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

Method loads

Lib/test/test_pickle.py:95–98  ·  view source on GitHub ↗
(self, buf, **kwds)

Source from the content-addressed store, hash-verified

93 return bytes(f.read())
94
95 def loads(self, buf, **kwds):
96 f = io.BytesIO(buf)
97 u = self.unpickler(f, **kwds)
98 return u.load()
99
100
101class InMemoryPickleTests(AbstractPickleTests, AbstractUnpickleTests,

Callers 15

select_simulator_deviceFunction · 0.45
load_moduleMethod · 0.45
_read_replyMethod · 0.45
cmdloopMethod · 0.45
completeMethod · 0.45
_unmarshal_codeFunction · 0.45
handleMethod · 0.45
test_pickleMethod · 0.45
complex_scriptFunction · 0.45
test_marshalFunction · 0.45
test_pickleFunction · 0.45
test_pickle_roundtripMethod · 0.45

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected