diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-05-02 00:48:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-02 00:48:13 (GMT) |
commit | 482b6b565af896cda0c78e5e266d11666c822d91 (patch) | |
tree | bdb76d7b0059abdef0bd2748a4651eed4b5465ab | |
parent | adbf178e49113b2de0042e86a1228560475a65c5 (diff) | |
download | cpython-482b6b565af896cda0c78e5e266d11666c822d91.zip cpython-482b6b565af896cda0c78e5e266d11666c822d91.tar.gz cpython-482b6b565af896cda0c78e5e266d11666c822d91.tar.bz2 |
Move dangling bullet points into named subsections (GH-13046)
-rw-r--r-- | Doc/whatsnew/3.8.rst | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 37570bc..30ee14c 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -216,17 +216,6 @@ New Modules Improved Modules ================ -* The :meth:`_asdict()` method for :func:`collections.namedtuple` now returns - a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because - regular dicts have guaranteed ordering in since Python 3.7. If the extra - features of :class:`OrderedDict` are required, the suggested remediation is - to cast the result to the desired type: ``OrderedDict(nt._asdict())``. - (Contributed by Raymond Hettinger in :issue:`35864`.) - -* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.0.0 - <http://blog.unicode.org/2019/03/announcing-unicode-standard-version-120.html>`_ - release. - asyncio ------- @@ -234,6 +223,17 @@ asyncio On Windows, the default event loop is now :class:`~asyncio.ProactorEventLoop`. +collections +----------- + +The :meth:`_asdict()` method for :func:`collections.namedtuple` now returns +a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because +regular dicts have guaranteed ordering in since Python 3.7. If the extra +features of :class:`OrderedDict` are required, the suggested remediation is +to cast the result to the desired type: ``OrderedDict(nt._asdict())``. +(Contributed by Raymond Hettinger in :issue:`35864`.) + + ctypes ------ @@ -490,10 +490,15 @@ Added new clock :data:`~time.CLOCK_UPTIME_RAW` for macOS 10.12. unicodedata ----------- +* The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.0.0 + <http://blog.unicode.org/2019/03/announcing-unicode-standard-version-120.html>`_ + release. + * New function :func:`~unicodedata.is_normalized` can be used to verify a string is in a specific normal form. (Contributed by Max Belanger and David Euresti in :issue:`32285`). + unittest -------- |