summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-04-24 10:04:41 (GMT)
committerGitHub <noreply@github.com>2020-04-24 10:04:41 (GMT)
commitc7b55e929b35ccab552f9efd49eed4a168e97e2f (patch)
treeb6c7bce91d02c712d7ea80d37655dcffc7d75ebc
parentd9df63deab78f70061a5a24c1f92e6d389fc45f7 (diff)
downloadcpython-c7b55e929b35ccab552f9efd49eed4a168e97e2f.zip
cpython-c7b55e929b35ccab552f9efd49eed4a168e97e2f.tar.gz
cpython-c7b55e929b35ccab552f9efd49eed4a168e97e2f.tar.bz2
Expand the implementation comments (GH-19699) (GH-19701)
-rw-r--r--Lib/collections/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index cadf1c7..a78a47c 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -695,6 +695,13 @@ class Counter(dict):
#
# To strip negative and zero counts, add-in an empty 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):
'''Add counts from two counters.