From: Miro HronĨok Date: Tue, 30 Apr 2024 18:25:25 +0000 (+0200) Subject: gh-109975: Document crypt_r as a possible replacement of crypt (#118439) X-Git-Tag: v3.13.0b1~204 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3;p=thirdparty%2FPython%2Fcpython.git gh-109975: Document crypt_r as a possible replacement of crypt (#118439) --- diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 98349a5984bb..a9a7e485dd2b 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`.)