summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-05-25 13:45:46 (GMT)
committerGitHub <noreply@github.com>2023-05-25 13:45:46 (GMT)
commite4127eaa1ea9104be0a1d9d9e147d50ba88f59aa (patch)
treeb6d74e28f2325fb4f8c27a94cc101d351b775054 /Doc/whatsnew/3.3.rst
parent38539ef1267f26a8b3508fcc8c6199cf46fc300b (diff)
downloadcpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.zip
cpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.tar.gz
cpython-e4127eaa1ea9104be0a1d9d9e147d50ba88f59aa.tar.bz2
gh-104773: PEP 594: Remove the crypt module (#104908)
Remove the crypt module and its private _crypt extension, deprecated in Python 3.11.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index b25cf36..3dca722 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1052,8 +1052,8 @@ their ``__init__`` method (for example, file objects) or in their
crypt
-----
-Addition of salt and modular crypt format (hashing method) and the :func:`~crypt.mksalt`
-function to the :mod:`crypt` module.
+Addition of salt and modular crypt format (hashing method) and the :func:`~!crypt.mksalt`
+function to the :mod:`!crypt` module.
(:issue:`10924`)