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

Mention exception in docstring

parent b7df32e6
...@@ -754,7 +754,8 @@ set_pop(PySetObject *so) ...@@ -754,7 +754,8 @@ set_pop(PySetObject *so)
return key; return key;
} }
PyDoc_STRVAR(pop_doc, "Remove and return an arbitrary set element."); PyDoc_STRVAR(pop_doc, "Remove and return an arbitrary set element.\n\
Raises KeyError if the set is empty.");
static int static int
set_traverse(PySetObject *so, visitproc visit, void *arg) set_traverse(PySetObject *so, visitproc visit, void *arg)
......
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