[Python-checkins] [3.11] [3.12] gh-96747: Mention the PyPI `passlib` package in the `crypt` deprecation doc (GH-106660) (GH-106660) (#106697)

gpshead webhook-mailer at python.org
Wed Jul 12 17:59:57 EDT 2023


https://github.com/python/cpython/commit/eac0616df902d4a591c2585479fbedfbbda7cdd6
commit: eac0616df902d4a591c2585479fbedfbbda7cdd6
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: gpshead <greg at krypto.org>
date: 2023-07-12T14:59:54-07:00
summary:

[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 <bityob at gmail.com>

files:
M Doc/library/crypt.rst

diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst
index 740084b40c5ac..51f91463f5ff9 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 <https://pypi.org/project/passlib/>`_ package can replace all use cases of this module.
 
 --------------
 



More information about the Python-checkins mailing list