summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorwim glenn <wim.glenn@gmail.com>2018-11-16 11:58:19 (GMT)
committerINADA Naoki <methane@users.noreply.github.com>2018-11-16 11:58:19 (GMT)
commita48e0eb9673ec96d1decb8a230331533cfb6138b (patch)
tree66d3f388ebd5bf20e69244a0beaccfa656d5d326 /Doc/reference
parentc2ccac7b9f9a1132ca36255b0ddfeecef4371aa3 (diff)
downloadcpython-a48e0eb9673ec96d1decb8a230331533cfb6138b.zip
cpython-a48e0eb9673ec96d1decb8a230331533cfb6138b.tar.gz
cpython-a48e0eb9673ec96d1decb8a230331533cfb6138b.tar.bz2
Fix outdated info in datamodel about dicts (GH-9807)
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/datamodel.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 79fde4b..7e2d2e6 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`.