MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __or__

Method __or__

lib/sqlalchemy/util/_immutabledict_cy.py:228–233  ·  view source on GitHub ↗
(  # type: ignore[override]
        self, __value: Mapping[_KT, _VT], /
    )

Source from the content-addressed store, hash-verified

226 _immutable_fn(self)
227
228 def __or__( # type: ignore[override]
229 self, __value: Mapping[_KT, _VT], /
230 ) -> immutabledict[_KT, _VT]:
231 return immutabledict(
232 dict.__or__(self, __value), # type: ignore[call-overload,operator,unused-ignore] # noqa: E501
233 )
234
235 def __ror__( # type: ignore[override]
236 self, __value: Mapping[_KT, _VT], /

Callers

nothing calls this directly

Calls 1

immutabledictClass · 0.70

Tested by

no test coverage detected