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 @@ -1770,7 +1770,11 @@ set_issubset(PySetObject *so, PyObject *other)
1770
1770
Py_RETURN_TRUE ;
1771
1771
}
1772
1772
1773
- PyDoc_STRVAR (issubset_doc , "Report whether another set contains this set." );
1773
+ PyDoc_STRVAR (issubset_doc ,
1774
+ "issubset($self, other, /)\n\
1775
+ --\n\
1776
+ \n\
1777
+ Test whether every element in the set is in other." );
1774
1778
1775
1779
static PyObject *
1776
1780
set_issuperset (PySetObject * so , PyObject * other )
@@ -1802,7 +1806,11 @@ set_issuperset(PySetObject *so, PyObject *other)
1802
1806
Py_RETURN_TRUE ;
1803
1807
}
1804
1808
1805
- PyDoc_STRVAR (issuperset_doc , "Report whether this set contains another set." );
1809
+ PyDoc_STRVAR (issuperset_doc ,
1810
+ "issuperset($self, other, /)\n\
1811
+ --\n\
1812
+ \n\
1813
+ Test whether every element in other is in the set." );
1806
1814
1807
1815
static PyObject *
1808
1816
set_richcompare (PySetObject * v , PyObject * w , int op )
You can’t perform that action at this time.
0 commit comments