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

Method load_binfloat

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

Source from the content-addressed store, hash-verified

1455 dispatch[FLOAT[0]] = load_float
1456
1457 def load_binfloat(self):
1458 self.append(unpack('>d', self.read(8))[0])
1459 dispatch[BINFLOAT[0]] = load_binfloat
1460
1461 def _decode_string(self, value):

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected