Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ load_list
Method
load_list
Lib/pickle.py:1612–1614 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
1610
dispatch[FROZENSET[0]] = load_frozenset
1611
1612
def
load_list(self):
1613
items = self.pop_mark()
1614
self.append(items)
1615
dispatch[LIST[0]] = load_list
1616
1617
def
load_dict(self):
Callers
nothing calls this directly
Calls
2
pop_mark
Method · 0.95
append
Method · 0.45
Tested by
no test coverage detected