[Python-checkins] bpo-32117: Updated Simpsons names in docs (GH-19737)

Javier Buzzi webhook-mailer at python.org
Tue May 5 10:50:04 EDT 2020


https://github.com/python/cpython/commit/627f7012353411590434a7d5777ddcbcc8d97fcd
commit: 627f7012353411590434a7d5777ddcbcc8d97fcd
branch: master
author: Javier Buzzi <buzzi.javier at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-05-05T07:49:57-07:00
summary:

bpo-32117: Updated Simpsons names in docs (GH-19737)



`sally` is not a Simpsons character

Automerge-Triggered-By: @gvanrossum

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 6d2b0d905ff06..fdfc0a8f472cd 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -428,8 +428,8 @@ Other Language Changes
             lastname, *members = family.split()
             return lastname.upper(), *members
 
-    >>> parse('simpsons homer marge bart lisa sally')
-    ('SIMPSONS', 'homer', 'marge', 'bart', 'lisa', 'sally')
+    >>> parse('simpsons homer marge bart lisa maggie')
+    ('SIMPSONS', 'homer', 'marge', 'bart', 'lisa', 'maggie')
 
   (Contributed by David Cuthbert and Jordan Chapman in :issue:`32117`.)
 



More information about the Python-checkins mailing list