From: Raymond Hettinger Date: Wed, 18 Nov 2009 20:28:22 +0000 (+0000) Subject: Issue 7263: Fix set.intersection() docstring. X-Git-Tag: v2.7a1~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79628d311f3a3fcace6b08387d3d402262790bee;p=python Issue 7263: Fix set.intersection() docstring. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index dd45380a35..81fd31580e 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -1339,9 +1339,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)