]> granicus.if.org Git - python/commitdiff
dict insertion order is guaranteed since 3.7 (GH-10431)
authorAndrés Delfino <adelfino@gmail.com>
Sun, 11 Nov 2018 16:56:47 +0000 (13:56 -0300)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 11 Nov 2018 16:56:47 +0000 (08:56 -0800)
Doc/library/collections.rst

index 6b9d85abaae726b9139b4e34b1e5c832fdc3b5bd..bfbf8a7ecc070c8e0c7dd00edcf87d7d18ca814e 100644 (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.