]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix outdated info in datamodel about dicts (GH-9807)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 16 Nov 2018 12:20:03 +0000 (04:20 -0800)
committerGitHub <noreply@github.com>
Fri, 16 Nov 2018 12:20:03 +0000 (04:20 -0800)
(cherry picked from commit a48e0eb9673ec96d1decb8a230331533cfb6138b)

Co-authored-by: wim glenn <wim.glenn@gmail.com>
Doc/reference/datamodel.rst

index 96e35744c8ae97e1c23a25ee744bc4ac327d15cd..02319509ca370452dadaa553bfcb493056dd6f4d 100644 (file)
@@ -1452,8 +1452,8 @@ Basic customization
       dict insertion, O(n^2) complexity.  See
       http://www.ocert.org/advisories/ocert-2011-003.html for details.
 
-      Changing hash values affects the iteration order of dicts, sets and
-      other mappings.  Python has never made guarantees about this ordering
+      Changing hash values affects the iteration order of sets.
+      Python has never made guarantees about this ordering
       (and it typically varies between 32-bit and 64-bit builds).
 
       See also :envvar:`PYTHONHASHSEED`.