MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / append

Method append

lib/sqlalchemy/orm/attributes.py:1135–1143  ·  view source on GitHub ↗
(
        self,
        state: InstanceState[Any],
        dict_: _InstanceDict,
        value: Any,
        initiator: Optional[AttributeEventToken],
        passive: PassiveFlag = PASSIVE_OFF,
    )

Source from the content-addressed store, hash-verified

1133 return ATTR_EMPTY
1134
1135 def append(
1136 self,
1137 state: InstanceState[Any],
1138 dict_: _InstanceDict,
1139 value: Any,
1140 initiator: Optional[AttributeEventToken],
1141 passive: PassiveFlag = PASSIVE_OFF,
1142 ) -> None:
1143 self.set(state, dict_, value, initiator, passive=passive)
1144
1145 def remove(
1146 self,

Callers 4

get_all_pendingMethod · 0.45
appendMethod · 0.45

Calls 1

setMethod · 0.95

Tested by

no test coverage detected