summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-08-24 09:49:27 (GMT)
committerGitHub <noreply@github.com>2019-08-24 09:49:27 (GMT)
commite9c90aa43144b0be1e4e393e8cb549573437a5da (patch)
tree1fc04aa51f0834dc8fa9d6c4a4790e4d981aceab /Doc/reference
parent4101181fd87c2fab6456663d3c8cc99377cf0463 (diff)
downloadcpython-e9c90aa43144b0be1e4e393e8cb549573437a5da.zip
cpython-e9c90aa43144b0be1e4e393e8cb549573437a5da.tar.gz
cpython-e9c90aa43144b0be1e4e393e8cb549573437a5da.tar.bz2
bpo-29535: Remove promize about hash randomization of datetime objects. (GH-15269)
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 fa47bf1..1dd8e42 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1445,8 +1445,8 @@ Basic customization
.. note::
- By default, the :meth:`__hash__` values of str, bytes and datetime
- objects are "salted" with an unpredictable random value. Although they
+ By default, the :meth:`__hash__` values of str and bytes objects are
+ "salted" with an unpredictable random value. Although they
remain constant within an individual Python process, they are not
predictable between repeated invocations of Python.