@@ -216,24 +216,24 @@ New Modules
216216Improved 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
231220asyncio
232221-------
233222
234223On 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+
237237ctypes
238238------
239239
@@ -490,10 +490,15 @@ Added new clock :data:`~time.CLOCK_UPTIME_RAW` for macOS 10.12.
490490unicodedata
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+
497502unittest
498503--------
499504
0 commit comments