]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-32117: Updated Simpsons names in docs (GH-19737)
authorJavier Buzzi <buzzi.javier@gmail.com>
Tue, 5 May 2020 14:49:57 +0000 (10:49 -0400)
committerGitHub <noreply@github.com>
Tue, 5 May 2020 14:49:57 +0000 (07:49 -0700)
`sally` is not a Simpsons character

Automerge-Triggered-By: @gvanrossum
Doc/whatsnew/3.8.rst

index 6d2b0d905ff06e885c489cacc5fb59f849e74443..fdfc0a8f472cd66d77c20dc1d2aacbb6af382c3b 100644 (file)
@@ -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`.)