MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / merge_with

Method merge_with

lib/sqlalchemy/util/_immutabledict_cy.py:156–160  ·  view source on GitHub ↗
(
        self, *dicts: Optional[Mapping[_KT, _VT]]
    )

Source from the content-addressed store, hash-verified

154
155 @cython.annotation_typing(False) # avoid cython crash from generic return
156 def merge_with(
157 self, *dicts: Optional[Mapping[_KT, _VT]]
158 ) -> immutabledict[_KT, _VT]:
159 # this is an alias of union
160 return self._union_other(dicts) # type: ignore[no-any-return]
161
162 @cython.cfunc
163 @cython.inline

Callers 12

_execute_defaultMethod · 0.45
_execute_ddlMethod · 0.45
exec_driver_sqlMethod · 0.45
__init__Method · 0.45
streamMethod · 0.45
orm_pre_session_execMethod · 0.45
_load_on_pk_identityFunction · 0.45
_emit_insert_statementsFunction · 0.45
_emit_lazyloadMethod · 0.45

Calls 1

_union_otherMethod · 0.95

Tested by

no test coverage detected