MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _raw_append

Method _raw_append

lib/sqlalchemy/ext/orderinglist.py:361–364  ·  view source on GitHub ↗

Append without any ordering behavior.

(self, entity: _T)

Source from the content-addressed store, hash-verified

359 self._order_entity(len(self) - 1, entity, self.reorder_on_append)
360
361 def _raw_append(self, entity: _T) -> None:
362 """Append without any ordering behavior."""
363
364 super().append(entity)
365
366 _raw_append = collection.adds(1)(_raw_append)
367

Callers 1

test_append_reorderMethod · 0.80

Calls 1

appendMethod · 0.45

Tested by 1

test_append_reorderMethod · 0.64