@@ -858,6 +858,17 @@ http.cookies
858858 (Contributed by Nick Burns and Senthil Kumaran in :gh: `92936 `.)
859859
860860
861+ http.server
862+ -----------
863+
864+ * The logging of :mod: `~http.server.BaseHTTPRequestHandler `,
865+ as used by the :ref: `command-line interface <http-server-cli >`,
866+ is colored by default.
867+ This can be controlled with :ref: `environment variables
868+ <using-on-controlling-color>`.
869+ (Contributed by Hugo van Kemenade in :gh: `146292 `.)
870+
871+
861872inspect
862873-------
863874
@@ -1133,6 +1144,10 @@ tarfile
11331144timeit
11341145------
11351146
1147+ * The output of the :mod: `timeit ` command-line interface is colored by default.
1148+ This can be controlled with
1149+ :ref: `environment variables <using-on-controlling-color >`.
1150+ (Contributed by Hugo van Kemenade in :gh: `146609 `.)
11361151* The command-line interface now colorizes error tracebacks
11371152 by default. This can be controlled with
11381153 :ref: `environment variables <using-on-controlling-color >`.
@@ -1330,6 +1345,25 @@ warnings
13301345 (Contributed by Serhiy Storchaka in :gh: `135801 `.)
13311346
13321347
1348+ wave
1349+ ----
1350+
1351+ * Added support for IEEE floating-point WAVE audio
1352+ (``WAVE_FORMAT_IEEE_FLOAT ``) in :mod: `wave `.
1353+
1354+ * Added :meth: `wave.Wave_read.getformat `, :meth: `wave.Wave_write.getformat `,
1355+ and :meth: `wave.Wave_write.setformat ` for explicit frame format handling.
1356+
1357+ * :meth: `wave.Wave_write.setparams ` accepts both 7-item tuples including
1358+ ``format `` and 6-item tuples for backwards compatibility (defaulting to
1359+ ``WAVE_FORMAT_PCM ``).
1360+
1361+ * ``WAVE_FORMAT_IEEE_FLOAT `` output now includes a ``fact `` chunk,
1362+ as required for non-PCM WAVE formats.
1363+
1364+ (Contributed by Lionel Koenig and Michiel W. Beijen in :gh: `60729 `.)
1365+
1366+
13331367xml.parsers.expat
13341368-----------------
13351369
@@ -1599,21 +1633,6 @@ typing
15991633wave
16001634----
16011635
1602- * Added support for IEEE floating-point WAVE audio
1603- (``WAVE_FORMAT_IEEE_FLOAT ``) in :mod: `wave `.
1604-
1605- * Added :meth: `wave.Wave_read.getformat `, :meth: `wave.Wave_write.getformat `,
1606- and :meth: `wave.Wave_write.setformat ` for explicit frame format handling.
1607-
1608- * :meth: `wave.Wave_write.setparams ` accepts both 7-item tuples including
1609- ``format `` and 6-item tuples for backwards compatibility (defaulting to
1610- ``WAVE_FORMAT_PCM ``).
1611-
1612- * ``WAVE_FORMAT_IEEE_FLOAT `` output now includes a ``fact `` chunk,
1613- as required for non-PCM WAVE formats.
1614-
1615- (Contributed by Lionel Koenig and Michiel W. Beijen in :gh: `60729 `.)
1616-
16171636* Removed the ``getmark() ``, ``setmark() `` and ``getmarkers() `` methods
16181637 of the :class: `~wave.Wave_read ` and :class: `~wave.Wave_write ` classes,
16191638 which were deprecated since Python 3.13.
0 commit comments