MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _insert_item

Method _insert_item

lib/sqlalchemy/util/_collections.py:142–144  ·  view source on GitHub ↗

insert an item into the dictionary directly.

(self, key: _KT, value: _VT)

Source from the content-addressed store, hash-verified

140 return FacadeDict, (dict(self),)
141
142 def _insert_item(self, key: _KT, value: _VT) -> None:
143 """insert an item into the dictionary directly."""
144 dict.__setitem__(self, key, value)
145
146 def __repr__(self) -> str:
147 return "FacadeDict(%s)" % dict.__repr__(self)

Callers 1

_add_tableMethod · 0.80

Calls 1

__setitem__Method · 0.45

Tested by

no test coverage detected