summaryrefslogtreecommitdiffstats
path: root/Doc/library/crypt.rst
diff options
context:
space:
mode:
authorYonatan Bitton <bityob@gmail.com>2023-07-12 21:58:51 (GMT)
committerGitHub <noreply@github.com>2023-07-12 21:58:51 (GMT)
commitec7b05a0bebb2cc2ec42bf00cde2b66145880459 (patch)
treeebe578b93971a29d5a9304e4a155d4c6c2c6e4bd /Doc/library/crypt.rst
parent6de9cffcd38b7ce0f6b914643d6df08b6fc750d3 (diff)
downloadcpython-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.rst1
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.
--------------