diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-07-23 14:04:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 14:04:30 (GMT) |
commit | 906fe47083bc9ab7ed2b70c99c1b0daad021f126 (patch) | |
tree | d3070c003f417d48527f79962aba51d48fb1b79b /Doc | |
parent | a4760cc32d9e5dac7be262e9736eb30502cd7be3 (diff) | |
download | cpython-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.rst | 8 |
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 ------- |