Browse Source

Clarify that example in comment is about fromkeys() (GH-8141)

pull/8142/head
Raymond Hettinger 8 years ago
committed by GitHub
parent
commit
dc9bc54899
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Lib/collections/__init__.py

2
Lib/collections/__init__.py

@ -610,7 +610,7 @@ class Counter(dict):
@classmethod
def fromkeys(cls, iterable, v=None):
# There is no equivalent method for counters because the semantics
# would be ambiguous in cases such as Counter('aaabbc', v=2).
# would be ambiguous in cases such as Counter.fromkeys('aaabbc', v=2).
# Initializing counters to zero values isn't necessary because zero
# is already the default value for counter lookups. Initializing
# to one is easily accomplished with Counter(set(iterable)). For

Loading…
Cancel
Save