We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c4e23 commit 0e96c41Copy full SHA for 0e96c41
1 file changed
Lib/collections/__init__.py
@@ -760,10 +760,12 @@ def __repr__(self):
760
# set(cp - cq) == sp - sq
761
# set(cp | cq) == sp | sq
762
# set(cp & cq) == sp & sq
763
- # cp.isequal(cq) == (sp == sq)
764
- # cp.issubset(cq) == sp.issubset(sq)
765
- # cp.issuperset(cq) == sp.issuperset(sq)
766
- # cp.isdisjoint(cq) == sp.isdisjoint(sq)
+ # (cp == cq) == (sp == sq)
+ # (cp != cq) == (sp != sq)
+ # (cp <= cq) == (sp <= sq)
+ # (cp < cq) == (sp < sq)
767
+ # (cp >= cq) == (sp >= sq)
768
+ # (cp > cq) == (sp > sq)
769
770
def __add__(self, other):
771
'''Add counts from two counters.
0 commit comments