This question is related to: Python Counter Comparison as Bag-type
In Python 3, comparing two counters will result in a "TypeError: unorderable types:Counter() > Counter()".
For sets in Python, we can do things like: set1 < set2, set1 <= set2; if we treat yje Counter type as multiset, then why such comparisons are not built in the collections module? Is there any design document/PEP proposal specifying any reasons for not building in such comparisons for the Counter/multiset type in Python 3 (that is, removing such comparators from Python 2 to Python 3)?