Kaydet (Commit) c566df3f authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Issue 7263: Fix set.intersection() docstring.

üst 7dfcef57
......@@ -1343,9 +1343,9 @@ set_intersection_multi(PySetObject *so, PyObject *args)
}
PyDoc_STRVAR(intersection_doc,
"Return the intersection of two sets as a new set.\n\
"Return the intersection of two or more sets as a new set.\n\
\n\
(i.e. all elements that are in both sets.)");
(i.e. elements that are common to all of the sets.)");
static PyObject *
set_intersection_update(PySetObject *so, PyObject *other)
......
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