From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 12 Jul 2023 21:59:54 +0000 (-0700) Subject: [3.11] [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation... X-Git-Tag: v3.11.5~207 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eac0616df902d4a591c2585479fbedfbbda7cdd6;p=thirdparty%2FPython%2Fcpython.git [3.11] [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation doc (GH-106660) (GH-106660) (#106697) [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation doc (GH-106660) (GH-106660) * Added mention to passlib package as alternative to the deprecated crypt module. (cherry picked from commit ec7b05a0bebb2cc2ec42bf00cde2b66145880459) Co-authored-by: Yonatan Bitton --- 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. --------------