Lines Matching defs:call
13 __all__ = ['abs', 'add', 'and_', 'attrgetter', 'call', 'concat', 'contains', 'countOf',
226 def call(obj, /, *args, **kwargs):
235 After f = attrgetter('name'), the call f(r) returns r.name.
236 After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
237 After h = attrgetter('name.first', 'name.last'), the call h(r) returns
274 After f = itemgetter(2), the call f(r) returns r[2].
275 After g = itemgetter(2, 5, 3), the call g(r) returns (r[2], r[5], r[3])
305 After f = methodcaller('name'), the call f(r) returns r.name().
306 After g = methodcaller('name', 'date', foo=1), the call g(r) returns
432 __call__ = call