diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-24 10:19:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-24 10:19:51 (GMT) |
commit | 076d0b9f5def35aeb0f8e8aadf658dc35aace81d (patch) | |
tree | 2c807faeb8f60c5ddc26a8968e8c9da50c7716f2 /Doc/using/cmdline.rst | |
parent | ef3ccd737020a0bb49ea0bfe48069f89bb5370a1 (diff) | |
download | cpython-076d0b9f5def35aeb0f8e8aadf658dc35aace81d.zip cpython-076d0b9f5def35aeb0f8e8aadf658dc35aace81d.tar.gz cpython-076d0b9f5def35aeb0f8e8aadf658dc35aace81d.tar.bz2 |
bpo-29535: Remove promize about hash randomization of datetime objects. (GH-15269)
(cherry picked from commit e9c90aa43144b0be1e4e393e8cb549573437a5da)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/using/cmdline.rst')
-rw-r--r-- | Doc/using/cmdline.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 6bc440f..50143f2 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -302,7 +302,7 @@ Miscellaneous options randomization is enabled by default. On previous versions of Python, this option turns on hash randomization, - so that the :meth:`__hash__` values of str, bytes and datetime + so that 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. @@ -618,7 +618,7 @@ conflict. .. envvar:: PYTHONHASHSEED If this variable is not set or set to ``random``, a random value is used - to seed the hashes of str, bytes and datetime objects. + to seed the hashes of str and bytes objects. If :envvar:`PYTHONHASHSEED` is set to an integer value, it is used as a fixed seed for generating the hash() of the types covered by the hash |