]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-109975: Document crypt_r as a possible replacement of crypt (#118439)
authorMiro Hrončok <miro@hroncok.cz>
Tue, 30 Apr 2024 18:25:25 +0000 (20:25 +0200)
committerGitHub <noreply@github.com>
Tue, 30 Apr 2024 18:25:25 +0000 (21:25 +0300)
Doc/whatsnew/3.13.rst

index 98349a5984bb7eaa8f1ec884280097cd1a71fdc5..a9a7e485dd2bac4b9f04f0ba0eb18ce748d2162f 100644 (file)
@@ -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`.)