Skip to content

Commit 76e8fd7

Browse files
andresdelfinomiss-islington
authored andcommitted
dict insertion order is guaranteed since 3.7 (pythonGH-10431)
1 parent 50ff02b commit 76e8fd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ For example::
225225
.. class:: Counter([iterable-or-mapping])
226226

227227
A :class:`Counter` is a :class:`dict` subclass for counting hashable objects.
228-
It is an unordered collection where elements are stored as dictionary keys
228+
It is a collection where elements are stored as dictionary keys
229229
and their counts are stored as dictionary values. Counts are allowed to be
230230
any integer value including zero or negative counts. The :class:`Counter`
231231
class is similar to bags or multisets in other languages.

0 commit comments

Comments
 (0)