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

Method loads

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

Source from the content-addressed store, hash-verified

111 return bytes(f.read())
112
113 def loads(self, buf, **kwds):
114 f = io.BytesIO(buf)
115 u = self.unpickler(f, **kwds)
116 return u.load()
117
118 @unittest.expectedFailure # TODO: RUSTPYTHON
119 def test_buffers_error(self):

Callers 15

json_loads.pyFile · 0.45
load_moduleMethod · 0.45
_unmarshal_codeFunction · 0.45
handleMethod · 0.45
test_pickleMethod · 0.45
complex_scriptFunction · 0.45
loadsMethod · 0.45
checkMethod · 0.45
test_pickler_superMethod · 0.45

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected