From: Charlie Zhao Date: Sat, 27 Jan 2024 09:53:01 +0000 (+0800) Subject: gh-113560: Improve docstrings for set.issubset() and set.issuperset() (GH-113562) X-Git-Tag: v3.13.0a4~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11c582235d86b6020710eff282eeb381a7bf7bb7;p=thirdparty%2FPython%2Fcpython.git gh-113560: Improve docstrings for set.issubset() and set.issuperset() (GH-113562) --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 88d20019bfb4..93de8e84f2dd 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -1770,7 +1770,11 @@ set_issubset(PySetObject *so, PyObject *other) Py_RETURN_TRUE; } -PyDoc_STRVAR(issubset_doc, "Report whether another set contains this set."); +PyDoc_STRVAR(issubset_doc, +"issubset($self, other, /)\n\ +--\n\ +\n\ +Test whether every element in the set is in other."); static PyObject * set_issuperset(PySetObject *so, PyObject *other) @@ -1802,7 +1806,11 @@ set_issuperset(PySetObject *so, PyObject *other) Py_RETURN_TRUE; } -PyDoc_STRVAR(issuperset_doc, "Report whether this set contains another set."); +PyDoc_STRVAR(issuperset_doc, +"issuperset($self, other, /)\n\ +--\n\ +\n\ +Test whether every element in other is in the set."); static PyObject * set_richcompare(PySetObject *v, PyObject *w, int op)