File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -1749,7 +1749,11 @@ set_issubset(PySetObject *so, PyObject *other)
1749
1749
Py_RETURN_TRUE ;
1750
1750
}
1751
1751
1752
- PyDoc_STRVAR (issubset_doc , "Report whether another set contains this set." );
1752
+ PyDoc_STRVAR (issubset_doc ,
1753
+ "issubset($self, other, /)\n\
1754
+ --\n\
1755
+ \n\
1756
+ Test whether every element in the set is in other." );
1753
1757
1754
1758
static PyObject *
1755
1759
set_issuperset (PySetObject * so , PyObject * other )
@@ -1781,7 +1785,11 @@ set_issuperset(PySetObject *so, PyObject *other)
1781
1785
Py_RETURN_TRUE ;
1782
1786
}
1783
1787
1784
- PyDoc_STRVAR (issuperset_doc , "Report whether this set contains another set." );
1788
+ PyDoc_STRVAR (issuperset_doc ,
1789
+ "issuperset($self, other, /)\n\
1790
+ --\n\
1791
+ \n\
1792
+ Test whether every element in other is in the set." );
1785
1793
1786
1794
static PyObject *
1787
1795
set_richcompare (PySetObject * v , PyObject * w , int op )
You can’t perform that action at this time.
0 commit comments