From: Yonatan Bitton Date: Wed, 12 Jul 2023 21:58:51 +0000 (+0300) Subject: [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation doc... X-Git-Tag: v3.12.0rc1~160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec7b05a0bebb2cc2ec42bf00cde2b66145880459;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation doc (GH-106660) (#106660) * Added mention to passlib package as alternative to the deprecated crypt module. --- diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst index 740084b40c5a..51f91463f5ff 100644 --- a/Doc/library/crypt.rst +++ b/Doc/library/crypt.rst @@ -20,6 +20,7 @@ The :mod:`crypt` module is deprecated (see :pep:`PEP 594 <594#crypt>` for details and alternatives). The :mod:`hashlib` module is a potential replacement for certain use cases. + The `passlib `_ package can replace all use cases of this module. --------------