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 @@ -1761,7 +1761,11 @@ set_issubset(PySetObject *so, PyObject *other)
1761
1761
Py_RETURN_TRUE ;
1762
1762
}
1763
1763
1764
- PyDoc_STRVAR (issubset_doc , "Report whether another set contains this set." );
1764
+ PyDoc_STRVAR (issubset_doc ,
1765
+ "issubset($self, other, /)\n\
1766
+ --\n\
1767
+ \n\
1768
+ Test whether every element in the set is in other." );
1765
1769
1766
1770
static PyObject *
1767
1771
set_issuperset (PySetObject * so , PyObject * other )
@@ -1793,7 +1797,11 @@ set_issuperset(PySetObject *so, PyObject *other)
1793
1797
Py_RETURN_TRUE ;
1794
1798
}
1795
1799
1796
- PyDoc_STRVAR (issuperset_doc , "Report whether this set contains another set." );
1800
+ PyDoc_STRVAR (issuperset_doc ,
1801
+ "issuperset($self, other, /)\n\
1802
+ --\n\
1803
+ \n\
1804
+ Test whether every element in other is in the set." );
1797
1805
1798
1806
static PyObject *
1799
1807
set_richcompare (PySetObject * v , PyObject * w , int op )
You can’t perform that action at this time.
0 commit comments