Lines Matching defs:value
6 "index($self, value, start=0, stop=sys.maxsize, /)\n"
9 "Return first index of value.\n"
11 "Raises ValueError if the value is not present.");
17 tuple_index_impl(PyTupleObject *self, PyObject *value, Py_ssize_t start,
24 PyObject *value;
31 value = args[0];
45 return_value = tuple_index_impl(self, value, start, stop);
52 "count($self, value, /)\n"
55 "Return number of occurrences of value.");
69 "If the argument is a tuple, the return value is the same object.");