Lines Matching defs:value
88 "Return the absolute value of the argument.");
154 "format($module, value, format_spec=\'\', /)\n"
157 "Return value.__format__(format_spec)\n"
167 builtin_format_impl(PyObject *module, PyObject *value, PyObject *format_spec);
173 PyObject *value;
179 value = args[0];
192 return_value = builtin_format_impl(module, value, format_spec);
537 "setattr($module, obj, name, value, /)\n"
540 "Sets the named attribute on the given object to the specified value.\n"
549 PyObject *value);
557 PyObject *value;
564 value = args[2];
565 return_value = builtin_setattr_impl(module, obj, name, value);
607 "Return the hash value for the given object.\n"
609 "Two objects that compare equal must also have the same hash value, but the\n"
780 " string appended after the last value, default a newline.\n"
900 "The return value is an integer if ndigits is omitted or None. Otherwise\n"
901 "the return value has the same type as the number. ndigits may be negative.");
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"