diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 13:00:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 13:00:51 (GMT) |
commit | fc07fe4e37fbfd74e7130a20c13d0c07f0a5cff1 (patch) | |
tree | 0e3566d16be7ce2d460e49dbd0a837a13582522a /Doc/whatsnew | |
parent | a4b7e9d1f812f2598ac9637d95e986c830bd451b (diff) | |
download | cpython-fc07fe4e37fbfd74e7130a20c13d0c07f0a5cff1.zip cpython-fc07fe4e37fbfd74e7130a20c13d0c07f0a5cff1.tar.gz cpython-fc07fe4e37fbfd74e7130a20c13d0c07f0a5cff1.tar.bz2 |
gh-104773: PEP 594: Remove the ossaudiodev module (#104862)
* Remove ossaudiodev extension in configure.ac and regenerate
the configure script.
* Remove ossaudiodev in Modules/Setup and Modules/Setup.stdlib.in.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.3.rst | 2 | ||||
-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 | ||||
-rw-r--r-- | Doc/whatsnew/3.5.rst | 2 |
5 files changed, 8 insertions, 4 deletions
diff --git a/Doc/whatsnew/2.3.rst b/Doc/whatsnew/2.3.rst index 4eb864f..3848c85 100644 --- a/Doc/whatsnew/2.3.rst +++ b/Doc/whatsnew/2.3.rst @@ -1392,7 +1392,7 @@ complete list of changes, or look through the CVS logs for all the details. details. * The old and never-documented :mod:`linuxaudiodev` module has been deprecated, - and a new version named :mod:`ossaudiodev` has been added. The module was + and a new version named :mod:`!ossaudiodev` has been added. The module was renamed because the OSS sound drivers can be used on platforms other than Linux, and the interface has also been tidied and brought up to date in various ways. (Contributed by Greg Ward and Nicholas FitzRoy-Dale.) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 778ab28..e59604e 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 62050aa..844d063 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -897,7 +897,7 @@ Modules (see :pep:`594`): * :mod:`msilib` * :mod:`nis` * :mod:`nntplib` -* :mod:`ossaudiodev` +* :mod:`!ossaudiodev` * :mod:`!pipes` * :mod:`!sndhdr` * :mod:`spwd` diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index a5549f4..d086f3c 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -157,6 +157,10 @@ Removed use the :mod:`subprocess` module instead. (Contributed by Victor Stinner in :gh:`104773`.) +* :pep:`594`: Remove the :mod:`!ossaudiodev` module, deprecated in Python 3.11: + use the `pygame project <https://www.pygame.org/>`_ for audio playback. + (Contributed by Victor Stinner in :gh:`104780`.) + Porting to Python 3.13 ====================== diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 14b6425..cd8f6e2 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -2095,7 +2095,7 @@ accepts ``"x"`` to request exclusive creation. Other module-level changes ========================== -Many functions in the :mod:`mmap`, :mod:`ossaudiodev`, :mod:`socket`, +Many functions in the :mod:`mmap`, :mod:`!ossaudiodev`, :mod:`socket`, :mod:`ssl`, and :mod:`codecs` modules now accept writable :term:`bytes-like objects <bytes-like object>`. (Contributed by Serhiy Storchaka in :issue:`23001`.) |