[Python-checkins] Fix tiny tiny typo in 3.8 what's new (GH-13049)

Miss Islington (bot) webhook-mailer at python.org
Thu May 2 04:21:04 EDT 2019


https://github.com/python/cpython/commit/05222914403c1e2a656c753fbcd20f844af9dd69
commit: 05222914403c1e2a656c753fbcd20f844af9dd69
branch: master
author: Daniel Porteous <dport at fb.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-05-02T01:20:58-07:00
summary:

Fix tiny tiny typo in 3.8 what's new (GH-13049)



I feel silly even making such a tiny typo fix, but I couldn't help but notice it.

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index c958fc36d667..82be92786ab0 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -227,8 +227,8 @@ 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
+a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because
+regular dicts have guaranteed ordering 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`.)



More information about the Python-checkins mailing list