summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-05-26 06:06:32 (GMT)
committerGitHub <noreply@github.com>2023-05-26 06:06:32 (GMT)
commit3f9c60f51ef820937e7e0f95f45e63fa0ae21e6c (patch)
treee3faa330550df992beeb418bb9ba95f472e4ef1c /Misc
parent0242e9a57aa87ed0b5cac526f65631c654a39054 (diff)
downloadcpython-3f9c60f51ef820937e7e0f95f45e63fa0ae21e6c.zip
cpython-3f9c60f51ef820937e7e0f95f45e63fa0ae21e6c.tar.gz
cpython-3f9c60f51ef820937e7e0f95f45e63fa0ae21e6c.tar.bz2
gh-104886: Remove deprecated configparser.LegacyInterpolation (#104887)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.11.0a7.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-24-21-30-40.gh-issue-104886.8TuV-_.rst3
2 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.11.0a7.rst b/Misc/NEWS.d/3.11.0a7.rst
index 8e7ccd4..5e9aadf 100644
--- a/Misc/NEWS.d/3.11.0a7.rst
+++ b/Misc/NEWS.d/3.11.0a7.rst
@@ -989,7 +989,7 @@ references in :ref:`PEP 585 generic aliases <types-genericalias>`.
.. nonce: xnhT4a
.. section: Library
-Add :exc:`DeprecationWarning` to :class:`LegacyInterpolation`, deprecated in
+Add :exc:`DeprecationWarning` to :class:`!LegacyInterpolation`, deprecated in
the docstring since Python 3.2. Will be removed in Python 3.13. Use
:class:`BasicInterpolation` or :class:`ExtendedInterpolation` instead.
diff --git a/Misc/NEWS.d/next/Library/2023-05-24-21-30-40.gh-issue-104886.8TuV-_.rst b/Misc/NEWS.d/next/Library/2023-05-24-21-30-40.gh-issue-104886.8TuV-_.rst
new file mode 100644
index 0000000..2f6796b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-24-21-30-40.gh-issue-104886.8TuV-_.rst
@@ -0,0 +1,3 @@
+Remove the undocumented :class:`!configparser.LegacyInterpolation` class,
+deprecated in the docstring since Python 3.2, and with a deprecation warning
+since Python 3.11. Patch by Hugo van Kemenade.