MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / update

Method update

lib/sqlalchemy/ext/mutable.py:1009–1011  ·  view source on GitHub ↗
(self, *arg: Iterable[_T])

Source from the content-addressed store, hash-verified

1007 """
1008
1009 def update(self, *arg: Iterable[_T]) -> None:
1010 set.update(self, *arg)
1011 self.changed()
1012
1013 def intersection_update(self, *arg: Iterable[Any]) -> None:
1014 set.intersection_update(self, *arg)

Callers 14

__ior__Method · 0.95
__setstate__Method · 0.95
_reconstituteFunction · 0.45
prepareMethod · 0.45
_copyMethod · 0.45
paramsMethod · 0.45
_iterMethod · 0.45
updateMethod · 0.45
__call__Method · 0.45
configureMethod · 0.45
async_engine_from_configFunction · 0.45
wrap_kwMethod · 0.45

Calls 1

changedMethod · 0.45

Tested by

no test coverage detected