Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ load_binint2
Method
load_binint2
Lib/pickle.py:1427–1428 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
1425
dispatch[BININT1[0]] = load_binint1
1426
1427
def
load_binint2(self):
1428
self.append(unpack(
'<H'
, self.read(2))[0])
1429
dispatch[BININT2[0]] = load_binint2
1430
1431
def
load_long(self):
Callers
nothing calls this directly
Calls
2
append
Method · 0.45
read
Method · 0.45
Tested by
no test coverage detected