From: Raymond Hettinger Date: Thu, 19 Nov 2009 00:01:54 +0000 (+0000) Subject: Issue 7263: Fix set.intersection() docstring. X-Git-Tag: v3.1.2rc1~326 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c566df3f55efeaea910033e6e515c78afa15ea6c;p=thirdparty%2FPython%2Fcpython.git Issue 7263: Fix set.intersection() docstring. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index b296f9f32970..27b41a10e469 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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)