mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Fix minor subclassing issue with collections.Counter
This commit is contained in:
parent
181810b5fe
commit
1c746c28f3
3 changed files with 13 additions and 2 deletions
|
|
@ -459,8 +459,8 @@ def update(self, iterable=None, **kwds):
|
|||
self.update(kwds)
|
||||
|
||||
def copy(self):
|
||||
'Like dict.copy() but returns a Counter instance instead of a dict.'
|
||||
return Counter(self)
|
||||
'Return a shallow copy.'
|
||||
return self.__class__(self)
|
||||
|
||||
def __reduce__(self):
|
||||
return self.__class__, (dict(self),)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue