Index: Objects/setobject.c =================================================================== --- Objects/setobject.c (revision 76107) +++ Objects/setobject.c (working copy) @@ -1343,9 +1343,9 @@ } 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. all elements that are in all sets.)"); static PyObject * set_intersection_update(PySetObject *so, PyObject *other)