summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2024-04-30 18:25:25 (GMT)
committerGitHub <noreply@github.com>2024-04-30 18:25:25 (GMT)
commitf7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3 (patch)
tree197d9e65eb26b7627d11520e2ad3ed2102ba70b0 /Doc/whatsnew
parentd7ac427a796a3f869b813dac37b030889b56cd3b (diff)
downloadcpython-f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3.zip
cpython-f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3.tar.gz
cpython-f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3.tar.bz2
gh-109975: Document crypt_r as a possible replacement of crypt (#118439)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 98349a5..a9a7e48 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -1437,7 +1437,10 @@ PEP 594: dead batteries
* :pypi:`argon2-cffi`:
The secure Argon2 password hashing algorithm.
* :pypi:`legacycrypt`:
- Wrapper to the POSIX crypt library call and associated functionality.
+ :mod:`ctypes` wrapper to the POSIX crypt library call and associated functionality.
+ * :pypi:`crypt_r`:
+ Fork of the :mod:`!crypt` module, wrapper to the :manpage:`crypt_r(3)` library
+ call and associated functionality.
(Contributed by Victor Stinner in :gh:`104773`.)