Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ load_binfloat
Method
load_binfloat
Lib/pickle.py:1431–1432 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
1429
dispatch[FLOAT[0]] = load_float
1430
1431
def
load_binfloat(self):
1432
self.append(unpack(
'>d'
, self.read(8))[0])
1433
dispatch[BINFLOAT[0]] = load_binfloat
1434
1435
def
_decode_string(self, value):
Callers
nothing calls this directly
Calls
3
unpack
Function · 0.90
append
Method · 0.45
read
Method · 0.45
Tested by
no test coverage detected