MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / discard

Method discard

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

Source from the content-addressed store, hash-verified

1051 self.changed()
1052
1053 def discard(self, elem: _T) -> None: # type: ignore[override,unused-ignore] # noqa: E501
1054 set.discard(self, elem)
1055 self.changed()
1056
1057 def pop(self, *arg: Any) -> _T:
1058 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