mirror of https://github.com/python/cpython
Expand the implementation comments (GH-19699)
This commit is contained in:
parent
25104949a5
commit
4cc4d6048e
|
@ -711,6 +711,13 @@ class Counter(dict):
|
||||||
#
|
#
|
||||||
# To strip negative and zero counts, add-in an empty counter:
|
# To strip negative and zero counts, add-in an empty counter:
|
||||||
# c += Counter()
|
# c += Counter()
|
||||||
|
#
|
||||||
|
# Rich comparison operators for multiset subset and superset tests
|
||||||
|
# are deliberately omitted due to semantic conflicts with the
|
||||||
|
# existing inherited dict equality method. Subset and superset
|
||||||
|
# semantics ignore zero counts and require that p≤q ∧ p≥q → p=q;
|
||||||
|
# however, that would not be the case for p=Counter(a=1, b=0)
|
||||||
|
# and q=Counter(a=1) where the dictionaries are not equal.
|
||||||
|
|
||||||
def __add__(self, other):
|
def __add__(self, other):
|
||||||
'''Add counts from two counters.
|
'''Add counts from two counters.
|
||||||
|
|
Loading…
Reference in New Issue