Commit b15d6fb9 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Docstring change: Specify exception raised

parent bd7c4ca5
...@@ -719,7 +719,9 @@ tuple_sizeof(PyTupleObject *self) ...@@ -719,7 +719,9 @@ tuple_sizeof(PyTupleObject *self)
} }
PyDoc_STRVAR(index_doc, PyDoc_STRVAR(index_doc,
"T.index(value, [start, [stop]]) -> integer -- return first index of value"); "T.index(value, [start, [stop]]) -> integer -- return first index of value.\n"
"Raises ValueError if the value is not present."
);
PyDoc_STRVAR(count_doc, PyDoc_STRVAR(count_doc,
"T.count(value) -> integer -- return number of occurrences of value"); "T.count(value) -> integer -- return number of occurrences of value");
PyDoc_STRVAR(sizeof_doc, PyDoc_STRVAR(sizeof_doc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment