summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2024-06-03 07:50:29 (GMT)
committerGitHub <noreply@github.com>2024-06-03 07:50:29 (GMT)
commit84c3191954b40e090db15da49a59fcc40afe34fd (patch)
treec8ffd6fe2beb28222bbe9de775be2021862221b5 /Doc
parent52586f930f62bd80374f0f240a4ecce0c0238174 (diff)
downloadcpython-84c3191954b40e090db15da49a59fcc40afe34fd.zip
cpython-84c3191954b40e090db15da49a59fcc40afe34fd.tar.gz
cpython-84c3191954b40e090db15da49a59fcc40afe34fd.tar.bz2
gh-118827: Remove `Quoter` from `urllib.parse` (#118828)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.14.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst
index 9f471d2..47f3e30 100644
--- a/Doc/whatsnew/3.14.rst
+++ b/Doc/whatsnew/3.14.rst
@@ -218,6 +218,13 @@ typing
* Remove :class:`!typing.ByteString`. It had previously raised a
:exc:`DeprecationWarning` since Python 3.12.
+urllib
+------
+
+* Remove deprecated :class:`!Quoter` class from :mod:`urllib.parse`.
+ It had previously raised a :exc:`DeprecationWarning` since Python 3.11.
+ (Contributed by Nikita Sobolev in :gh:`118827`.)
+
Others
------