summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-07-23 14:04:30 (GMT)
committerGitHub <noreply@github.com>2021-07-23 14:04:30 (GMT)
commit906fe47083bc9ab7ed2b70c99c1b0daad021f126 (patch)
treed3070c003f417d48527f79962aba51d48fb1b79b /Doc
parenta4760cc32d9e5dac7be262e9736eb30502cd7be3 (diff)
downloadcpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.zip
cpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.tar.gz
cpython-906fe47083bc9ab7ed2b70c99c1b0daad021f126.tar.bz2
bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.11.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 7d2e4e8..190c422 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -198,6 +198,14 @@ math
Dickinson in :issue:`44339`.)
+os
+--
+
+* On Windows, :func:`os.urandom`: uses BCryptGenRandom API instead of CryptGenRandom API
+ which is deprecated from Microsoft Windows API.
+ (Contributed by Dong-hee Na in :issue:`44611`.)
+
+
sqlite3
-------