
python-checkins at python
Nov 18, 2009, 4:20 PM
Post #1 of 1
(114 views)
Permalink
|
|
r76388 - python/branches/release31-maint/Objects/setobject.c
|
|
Author: raymond.hettinger Date: Thu Nov 19 01:01:54 2009 New Revision: 76388 Log: Issue 7263: Fix set.intersection() docstring. Modified: python/branches/release31-maint/Objects/setobject.c Modified: python/branches/release31-maint/Objects/setobject.c ============================================================================== --- python/branches/release31-maint/Objects/setobject.c (original) +++ python/branches/release31-maint/Objects/setobject.c Thu Nov 19 01:01:54 2009 @@ -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. elements that are common to all of the sets.)"); static PyObject * set_intersection_update(PySetObject *so, PyObject *other) _______________________________________________ Python-checkins mailing list Python-checkins [at] python http://mail.python.org/mailman/listinfo/python-checkins
|