Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ load_binint2
Method
load_binint2
Lib/pickle.py:1401–1402 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
1399
dispatch[BININT1[0]] = load_binint1
1400
1401
def
load_binint2(self):
1402
self.append(unpack(
'<H'
, self.read(2))[0])
1403
dispatch[BININT2[0]] = load_binint2
1404
1405
def
load_long(self):
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