Skip to content

Commit 482b6b5

Browse files
authored
Move dangling bullet points into named subsections (GH-13046)
1 parent adbf178 commit 482b6b5

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

Doc/whatsnew/3.8.rst

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -216,24 +216,24 @@ New Modules
216216
Improved Modules
217217
================
218218

219-
* The :meth:`_asdict()` method for :func:`collections.namedtuple` now returns
220-
a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because
221-
regular dicts have guaranteed ordering in since Python 3.7. If the extra
222-
features of :class:`OrderedDict` are required, the suggested remediation is
223-
to cast the result to the desired type: ``OrderedDict(nt._asdict())``.
224-
(Contributed by Raymond Hettinger in :issue:`35864`.)
225-
226-
* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.0.0
227-
<http://blog.unicode.org/2019/03/announcing-unicode-standard-version-120.html>`_
228-
release.
229-
230219

231220
asyncio
232221
-------
233222

234223
On Windows, the default event loop is now :class:`~asyncio.ProactorEventLoop`.
235224

236225

226+
collections
227+
-----------
228+
229+
The :meth:`_asdict()` method for :func:`collections.namedtuple` now returns
230+
a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because
231+
regular dicts have guaranteed ordering in since Python 3.7. If the extra
232+
features of :class:`OrderedDict` are required, the suggested remediation is
233+
to cast the result to the desired type: ``OrderedDict(nt._asdict())``.
234+
(Contributed by Raymond Hettinger in :issue:`35864`.)
235+
236+
237237
ctypes
238238
------
239239

@@ -490,10 +490,15 @@ Added new clock :data:`~time.CLOCK_UPTIME_RAW` for macOS 10.12.
490490
unicodedata
491491
-----------
492492

493+
* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.0.0
494+
<http://blog.unicode.org/2019/03/announcing-unicode-standard-version-120.html>`_
495+
release.
496+
493497
* New function :func:`~unicodedata.is_normalized` can be used to verify a string
494498
is in a specific normal form. (Contributed by Max Belanger and David Euresti in
495499
:issue:`32285`).
496500

501+
497502
unittest
498503
--------
499504

0 commit comments

Comments
 (0)