diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 22:40:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 22:40:30 (GMT) |
commit | 087c1a6539eac330372a8b759bf3e2d472f6148a (patch) | |
tree | 884c5f564140d56fe25141d657ca62d962cb26e7 /Doc/whatsnew | |
parent | 17e1fe0f9ba87eb170493daa0a4de207425195fd (diff) | |
download | cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.zip cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.tar.gz cpython-087c1a6539eac330372a8b759bf3e2d472f6148a.tar.bz2 |
gh-104773: PEP 594: Remove the xdrlib module (#104900)
pickle documentation no longer mentions the XDR format.
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 | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 94e8b3d..afb1021 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1735,7 +1735,7 @@ Modules +---------------------+---------------------+---------------------+---------------------+---------------------+ | :mod:`audioop` | :mod:`crypt` | :mod:`!nis` | :mod:`!sndhdr` | :mod:`uu` | +---------------------+---------------------+---------------------+---------------------+---------------------+ - | :mod:`!cgi` | :mod:`imghdr` | :mod:`!nntplib` | :mod:`!spwd` | :mod:`xdrlib` | + | :mod:`!cgi` | :mod:`imghdr` | :mod:`!nntplib` | :mod:`!spwd` | :mod:`!xdrlib` | +---------------------+---------------------+---------------------+---------------------+---------------------+ | :mod:`!cgitb` | :mod:`!mailcap` | :mod:`!ossaudiodev` | :mod:`!sunau` | | +---------------------+---------------------+---------------------+---------------------+---------------------+ diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index ccba622..8de6cf4 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -904,7 +904,7 @@ Modules (see :pep:`594`): * :mod:`!sunau` * :mod:`!telnetlib` * :mod:`uu` -* :mod:`xdrlib` +* :mod:`!xdrlib` APIs: diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index a45294e..a470680 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -195,6 +195,9 @@ Removed * :pep:`594`: Remove the :mod:`!nis` module, deprecated in Python 3.11. (Contributed by Victor Stinner in :gh:`104773`.) +* :pep:`594`: Remove the :mod:`!xdrlib` module, deprecated in Python 3.11. + (Contributed by Victor Stinner in :gh:`104773`.) + Porting to Python 3.13 ====================== |