An event which occurs on a before a pop() operation occurs.
(collection, _sa_initiator=None)
| 1069 | |
| 1070 | |
| 1071 | def __before_pop(collection, _sa_initiator=None): |
| 1072 | """An event which occurs on a before a pop() operation occurs.""" |
| 1073 | executor = collection._sa_adapter |
| 1074 | if executor: |
| 1075 | executor.fire_pre_remove_event(_sa_initiator) |
| 1076 | |
| 1077 | |
| 1078 | def _list_decorators() -> Dict[str, Callable[[_FN], _FN]]: |
no test coverage detected