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

Method remove_from_list

lib/sqlalchemy/event/registry.py:374–380  ·  view source on GitHub ↗
(
        self,
        owner: RefCollection[_ET],
        list_: Deque[_ListenerFnType],
    )

Source from the content-addressed store, hash-verified

372 return False
373
374 def remove_from_list(
375 self,
376 owner: RefCollection[_ET],
377 list_: Deque[_ListenerFnType],
378 ) -> None:
379 _removed_from_collection(self, owner)
380 list_.remove(self._listen_fn)
381
382 def prepend_to_list(
383 self,

Callers

nothing calls this directly

Calls 2

_removed_from_collectionFunction · 0.85
removeMethod · 0.45

Tested by

no test coverage detected