Lines Matching defs:iterable
94 "all($module, iterable, /)\n"
97 "Return True if bool(x) is True for all values x in the iterable.\n"
99 "If the iterable is empty, return True.");
105 "any($module, iterable, /)\n"
108 "Return True if bool(x) is True for any x in the iterable.\n"
110 "If the iterable is empty, return False.");
937 "sum($module, iterable, /, start=0)\n"
940 "Return the sum of a \'start\' value (default: 0) plus an iterable of numbers\n"
942 "When the iterable is empty, return the start value.\n"
950 builtin_sum_impl(PyObject *module, PyObject *iterable, PyObject *start);
960 PyObject *iterable;
967 iterable = args[0];
973 return_value = builtin_sum_impl(module, iterable, start);