MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / __setstate__

Method __setstate__

lib/sqlalchemy/sql/base.py:2546–2548  ·  view source on GitHub ↗
(self, state: Dict[str, Any])

Source from the content-addressed store, hash-verified

2544 return {"_parent": self._parent}
2545
2546 def __setstate__(self, state: Dict[str, Any]) -> None:
2547 parent = state["_parent"]
2548 self.__init__(parent) # type: ignore
2549
2550 def corresponding_column(
2551 self, column: _COL, require_embedded: bool = False

Callers

nothing calls this directly

Calls 1

__init__Method · 0.95

Tested by

no test coverage detected