(fn)
| 1079 | """Tailored instrumentation wrappers for any list-like class.""" |
| 1080 | |
| 1081 | def _tidy(fn): |
| 1082 | fn._sa_instrumented = True |
| 1083 | fn.__doc__ = getattr(list, fn.__name__).__doc__ |
| 1084 | |
| 1085 | def append(fn): |
| 1086 | def append(self, item, _sa_initiator=None): |
no outgoing calls
no test coverage detected