(self)
| 518 | ) |
| 519 | |
| 520 | def _refuse_empty(self) -> NoReturn: |
| 521 | raise sa_exc.InvalidRequestError( |
| 522 | "This is a special 'empty' collection which cannot accommodate " |
| 523 | "internal mutation operations" |
| 524 | ) |
| 525 | |
| 526 | def append_without_event(self, item: Any) -> None: |
| 527 | """Add or restore an entity to the collection, firing no events.""" |
no outgoing calls
no test coverage detected