MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / append

Function append

lib/sqlalchemy/orm/collections.py:1085–1091  ·  view source on GitHub ↗
(fn)

Source from the content-addressed store, hash-verified

1083 fn.__doc__ = getattr(list, fn.__name__).__doc__
1084
1085 def append(fn):
1086 def append(self, item, _sa_initiator=None):
1087 item = __set(self, item, _sa_initiator, NO_KEY)
1088 fn(self, item)
1089
1090 _tidy(append)
1091 return append
1092
1093 def remove(fn):
1094 def remove(self, value, _sa_initiator=None):

Callers

nothing calls this directly

Calls 2

__setFunction · 0.85
_tidyFunction · 0.85

Tested by

no test coverage detected