MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / discard

Method discard

lib/sqlalchemy/ext/mutable.py:1049–1051  ·  view source on GitHub ↗
(self, elem: _T)

Source from the content-addressed store, hash-verified

1047 self.changed()
1048
1049 def discard(self, elem: _T) -> None: # type: ignore[override,unused-ignore] # noqa: E501
1050 set.discard(self, elem)
1051 self.changed()
1052
1053 def pop(self, *arg: Any) -> _T:
1054 result = set.pop(self, *arg)

Callers 14

processMethod · 0.45
_col_attachedMethod · 0.45
_set_parentMethod · 0.45
disposeMethod · 0.45
lintMethod · 0.45
our_warnFunction · 0.45
process_statementMethod · 0.45
_generate_driver_urlsFunction · 0.45
_remove_connMethod · 0.45
checkin_allMethod · 0.45

Calls 1

changedMethod · 0.45

Tested by

no test coverage detected