Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/pallets/werkzeug
/ __getstate__
Method
__getstate__
src/werkzeug/datastructures/structures.py:653–654 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
651
return
type(self), (list(self.items(multi=True)),)
652
653
def
__getstate__(self) -> t.Any:
654
return
list(self.items(multi=True))
655
656
def
__setstate__(self, values: t.Any) -> None:
657
self.clear()
Callers
nothing calls this directly
Calls
2
items
Method · 0.95
list
Function · 0.50
Tested by
no test coverage detected