diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 14:16:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 14:16:55 (GMT) |
commit | 9d457e115447b2079a1f66950d3c76cb77febf38 (patch) | |
tree | 086555a9ff54a99d365c0f0f22f3d6a9dc4a485f /Doc/whatsnew | |
parent | bbc5e5c7d707cd316d424eeb70b8ed1f792209af (diff) | |
download | cpython-9d457e115447b2079a1f66950d3c76cb77febf38.zip cpython-9d457e115447b2079a1f66950d3c76cb77febf38.tar.gz cpython-9d457e115447b2079a1f66950d3c76cb77febf38.tar.bz2 |
gh-104773: PEP 594: Remove the mailcap module (#104867)
Remove Lib/test/mailcap.txt test file.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.12.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 9734d43..fd4a75c 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1737,7 +1737,7 @@ Modules +---------------------+---------------------+---------------------+---------------------+---------------------+ | :mod:`!cgi` | :mod:`imghdr` | :mod:`nntplib` | :mod:`spwd` | :mod:`xdrlib` | +---------------------+---------------------+---------------------+---------------------+---------------------+ - | :mod:`!cgitb` | :mod:`mailcap` | :mod:`!ossaudiodev` | :mod:`!sunau` | | + | :mod:`!cgitb` | :mod:`!mailcap` | :mod:`!ossaudiodev` | :mod:`!sunau` | | +---------------------+---------------------+---------------------+---------------------+---------------------+ (Contributed by Brett Cannon in :issue:`47061` and Victor Stinner in diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 316296a..7bf0df1 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -893,7 +893,7 @@ Modules (see :pep:`594`): * :mod:`chunk` * :mod:`crypt` * :mod:`imghdr` -* :mod:`mailcap` +* :mod:`!mailcap` * :mod:`msilib` * :mod:`nis` * :mod:`nntplib` diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 83d539b..1102225 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -164,6 +164,10 @@ Removed * :pep:`594`: Remove the :mod:`!sunau` module, deprecated in Python 3.11. (Contributed by Victor Stinner in :gh:`104773`.) +* :pep:`594`: Remove the :mod:`!mailcap` module, deprecated in Python 3.11. + The :mod:`mimetypes` module provides an alternative. + (Contributed by Victor Stinner in :gh:`104773`.) + Porting to Python 3.13 ====================== |