summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-05-24 20:34:41 (GMT)
committerGitHub <noreply@github.com>2023-05-24 20:34:41 (GMT)
commit684e99d01df0c7c8f7c67567e2cece4673df9432 (patch)
treece4e099967cd12b76e38518fe36942783a57ebe0 /Misc
parent160321e5304b962a162eb023472aa2bc8307ae15 (diff)
downloadcpython-684e99d01df0c7c8f7c67567e2cece4673df9432.zip
cpython-684e99d01df0c7c8f7c67567e2cece4673df9432.tar.gz
cpython-684e99d01df0c7c8f7c67567e2cece4673df9432.tar.bz2
gh-104773: PEP 594: Remove the spwd module (#104871)
Remove spwd from the configure script and Modules/Setup.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.10.0a3.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-24-17-47-25.gh-issue-104773.TzUSY2.rst3
2 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.10.0a3.rst b/Misc/NEWS.d/3.10.0a3.rst
index 699a0dd..f24b6d4 100644
--- a/Misc/NEWS.d/3.10.0a3.rst
+++ b/Misc/NEWS.d/3.10.0a3.rst
@@ -1296,7 +1296,7 @@ Port _struct extension module to multiphase initialization (:pep:`489`)
.. nonce: 6F9o6L
.. section: C API
-Port :mod:`spwd` extension module to multiphase initialization (:pep:`489`)
+Port :mod:`!spwd` extension module to multiphase initialization (:pep:`489`)
..
diff --git a/Misc/NEWS.d/next/Library/2023-05-24-17-47-25.gh-issue-104773.TzUSY2.rst b/Misc/NEWS.d/next/Library/2023-05-24-17-47-25.gh-issue-104773.TzUSY2.rst
new file mode 100644
index 0000000..2219489
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-24-17-47-25.gh-issue-104773.TzUSY2.rst
@@ -0,0 +1,3 @@
+:pep:`594`: Remove the :mod:`!spwd` module, deprecated in Python 3.11: the
+`python-pam project <https://pypi.org/project/python-pam/>`_ can be used
+instead. Patch by Victor Stinner.