mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Clarify that example in comment is about fromkeys() (GH-8141)
This commit is contained in:
parent
c2368cbc83
commit
dc9bc54899
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue