[Python-checkins] Fix outdated info in datamodel about dicts (GH-9807)

Miss Islington (bot) webhook-mailer at python.org
Fri Nov 16 07:20:06 EST 2018


https://github.com/python/cpython/commit/be34cb26b92e6249a1e485479bf5ff60979e5a6d
commit: be34cb26b92e6249a1e485479bf5ff60979e5a6d
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-11-16T04:20:03-08:00
summary:

Fix outdated info in datamodel about dicts (GH-9807)

(cherry picked from commit a48e0eb9673ec96d1decb8a230331533cfb6138b)

Co-authored-by: wim glenn <wim.glenn at gmail.com>

files:
M Doc/reference/datamodel.rst

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 96e35744c8ae..02319509ca37 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -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`.



More information about the Python-checkins mailing list