summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-05-26 13:54:15 (GMT)
committerGitHub <noreply@github.com>2023-05-26 13:54:15 (GMT)
commit5ab4bc05c459f25c9d1dcb9b20f10bbd7e6eae5e (patch)
treed6f51ba5e12659c321f11d9d75ec0390ed561d6f /Misc
parentafa759fb800be416f69e3e9c9b3efe68006316f5 (diff)
downloadcpython-5ab4bc05c459f25c9d1dcb9b20f10bbd7e6eae5e.zip
cpython-5ab4bc05c459f25c9d1dcb9b20f10bbd7e6eae5e.tar.gz
cpython-5ab4bc05c459f25c9d1dcb9b20f10bbd7e6eae5e.tar.bz2
gh-104804: Remove webbrowser.MacOSX class, deprecated in Python 3.11 (#104816)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.11.0a1.rst4
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-23-21-25-54.gh-issue-104804.78fiE6.rst2
2 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS.d/3.11.0a1.rst b/Misc/NEWS.d/3.11.0a1.rst
index 284717a..ea96206 100644
--- a/Misc/NEWS.d/3.11.0a1.rst
+++ b/Misc/NEWS.d/3.11.0a1.rst
@@ -1966,8 +1966,8 @@ A new function ``operator.call`` has been added, such that
.. nonce: ofe3ms
.. section: Library
-:class:`webbrowser.MacOSX` is deprecated and will be removed in Python 3.13.
-It is untested and undocumented and also not used by webbrowser itself.
+:class:`!webbrowser.MacOSX` is deprecated and will be removed in Python 3.13.
+It is untested and undocumented and also not used by :mod:`webbrowser` itself.
Patch by Dong-hee Na.
..
diff --git a/Misc/NEWS.d/next/Library/2023-05-23-21-25-54.gh-issue-104804.78fiE6.rst b/Misc/NEWS.d/next/Library/2023-05-23-21-25-54.gh-issue-104804.78fiE6.rst
new file mode 100644
index 0000000..78409cf
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-23-21-25-54.gh-issue-104804.78fiE6.rst
@@ -0,0 +1,2 @@
+Remove the untested and undocumented :mod:`webbrowser` :class:`!MacOSX` class, deprecated in Python 3.11.
+Patch by Hugo van Kemenade.