dict insertion order is guaranteed since 3.7 (GH-10431)

This commit is contained in:
Andrés Delfino 2018-11-11 13:56:47 -03:00 committed by Miss Islington (bot)
parent 50ff02b431
commit 76e8fd7b7e
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ For example::
.. class:: Counter([iterable-or-mapping])
A :class:`Counter` is a :class:`dict` subclass for counting hashable objects.
It is an unordered collection where elements are stored as dictionary keys
It is a collection where elements are stored as dictionary keys
and their counts are stored as dictionary values. Counts are allowed to be
any integer value including zero or negative counts. The :class:`Counter`
class is similar to bags or multisets in other languages.