diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-25 13:45:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 13:45:46 (GMT) |
commit | e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa (patch) | |
tree | b6d74e28f2325fb4f8c27a94cc101d351b775054 /Doc/whatsnew/3.7.rst | |
parent | 38539ef1267f26a8b3508fcc8c6199cf46fc300b (diff) | |
download | cpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.zip cpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.tar.gz cpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.tar.bz2 |
gh-104773: PEP 594: Remove the crypt module (#104908)
Remove the crypt module and its private _crypt extension, deprecated
in Python 3.11.
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 8b4aa17..93915b2 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -848,10 +848,10 @@ alternative to script path. (Contributed by Sanyam Khurana in :issue:`21862`.) crypt ----- -The :mod:`crypt` module now supports the Blowfish hashing method. +The :mod:`!crypt` module now supports the Blowfish hashing method. (Contributed by Serhiy Storchaka in :issue:`31664`.) -The :func:`~crypt.mksalt` function now allows specifying the number of rounds +The :func:`~!crypt.mksalt` function now allows specifying the number of rounds for hashing. (Contributed by Serhiy Storchaka in :issue:`31702`.) |