@@ -216,24 +216,24 @@ New Modules
216
216
Improved Modules
217
217
================
218
218
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
-
230
219
231
220
asyncio
232
221
-------
233
222
234
223
On Windows, the default event loop is now :class: `~asyncio.ProactorEventLoop `.
235
224
236
225
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
+
237
237
ctypes
238
238
------
239
239
@@ -490,10 +490,15 @@ Added new clock :data:`~time.CLOCK_UPTIME_RAW` for macOS 10.12.
490
490
unicodedata
491
491
-----------
492
492
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
+
493
497
* New function :func: `~unicodedata.is_normalized ` can be used to verify a string
494
498
is in a specific normal form. (Contributed by Max Belanger and David Euresti in
495
499
:issue: `32285 `).
496
500
501
+
497
502
unittest
498
503
--------
499
504
0 commit comments