diff options
author | Yonatan Bitton <bityob@gmail.com> | 2023-07-12 21:58:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 21:58:51 (GMT) |
commit | ec7b05a0bebb2cc2ec42bf00cde2b66145880459 (patch) | |
tree | ebe578b93971a29d5a9304e4a155d4c6c2c6e4bd /Doc/library/crypt.rst | |
parent | 6de9cffcd38b7ce0f6b914643d6df08b6fc750d3 (diff) | |
download | cpython-ec7b05a0bebb2cc2ec42bf00cde2b66145880459.zip cpython-ec7b05a0bebb2cc2ec42bf00cde2b66145880459.tar.gz cpython-ec7b05a0bebb2cc2ec42bf00cde2b66145880459.tar.bz2 |
[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.
Diffstat (limited to 'Doc/library/crypt.rst')
-rw-r--r-- | Doc/library/crypt.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst index 740084b..51f9146 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. -------------- |