diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-22 16:19:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 16:19:36 (GMT) |
commit | d0cdeaab76fef8a6e5a04665df226b6659111e4e (patch) | |
tree | 71f9d3b0791543ef421090997152c713ef4f8684 /Misc | |
parent | 4109263a7edce11194e301138cf66fa2d07f7ce4 (diff) | |
download | cpython-d0cdeaab76fef8a6e5a04665df226b6659111e4e.zip cpython-d0cdeaab76fef8a6e5a04665df226b6659111e4e.tar.gz cpython-d0cdeaab76fef8a6e5a04665df226b6659111e4e.tar.bz2 |
bpo-32554: Deprecate hashing arbitrary types in random.seed() (GH-15382)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-08-22-01-49-05.bpo-32554.4xiXyM.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-22-01-49-05.bpo-32554.4xiXyM.rst b/Misc/NEWS.d/next/Library/2019-08-22-01-49-05.bpo-32554.4xiXyM.rst new file mode 100644 index 0000000..752cf48 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-08-22-01-49-05.bpo-32554.4xiXyM.rst @@ -0,0 +1 @@ +Deprecate having random.seed() call hash on arbitrary types. |