summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2021-05-03 23:11:35 (GMT)
committerGitHub <noreply@github.com>2021-05-03 23:11:35 (GMT)
commitb05352e4c2f25b292fb7de0ab927e74415bc2dd8 (patch)
treebf3a7f893a153057fb236b935fdc634c3e373f1d /Misc
parent2fc857a5721a5b42bcb696c9cae1bbcc82a91b17 (diff)
downloadcpython-b05352e4c2f25b292fb7de0ab927e74415bc2dd8.zip
cpython-b05352e4c2f25b292fb7de0ab927e74415bc2dd8.tar.gz
cpython-b05352e4c2f25b292fb7de0ab927e74415bc2dd8.tar.bz2
bpo-44018: random.seed() no longer mutates its inputs (GH-25856)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-05-03-10-07-43.bpo-44018.VDyW8f.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-03-10-07-43.bpo-44018.VDyW8f.rst b/Misc/NEWS.d/next/Library/2021-05-03-10-07-43.bpo-44018.VDyW8f.rst
new file mode 100644
index 0000000..87c7d83
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-05-03-10-07-43.bpo-44018.VDyW8f.rst
@@ -0,0 +1 @@
+random.seed() no longer mutates bytearray inputs.