diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-12 21:59:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 21:59:54 (GMT) |
commit | eac0616df902d4a591c2585479fbedfbbda7cdd6 (patch) | |
tree | 0b498b8c146ec23e858d9df00a0df94240b18275 /Doc/library | |
parent | 81a5bcf7ba14fc1f006968b1c9b5065b70b8229b (diff) | |
download | cpython-eac0616df902d4a591c2585479fbedfbbda7cdd6.zip cpython-eac0616df902d4a591c2585479fbedfbbda7cdd6.tar.gz cpython-eac0616df902d4a591c2585479fbedfbbda7cdd6.tar.bz2 |
[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@gmail.com>
Diffstat (limited to 'Doc/library')
-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. -------------- |