summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.8.rst
diff options
context:
space:
mode:
authorJavier Buzzi <buzzi.javier@gmail.com>2020-05-05 14:49:57 (GMT)
committerGitHub <noreply@github.com>2020-05-05 14:49:57 (GMT)
commit627f7012353411590434a7d5777ddcbcc8d97fcd (patch)
treea35bb484bf423fc1d1056b2689fd1b2ace19eaa6 /Doc/whatsnew/3.8.rst
parentc5fa364f4ea836f25dd07cfb328152d40a568371 (diff)
downloadcpython-627f7012353411590434a7d5777ddcbcc8d97fcd.zip
cpython-627f7012353411590434a7d5777ddcbcc8d97fcd.tar.gz
cpython-627f7012353411590434a7d5777ddcbcc8d97fcd.tar.bz2
bpo-32117: Updated Simpsons names in docs (GH-19737)
`sally` is not a Simpsons character Automerge-Triggered-By: @gvanrossum
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r--Doc/whatsnew/3.8.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 6d2b0d9..fdfc0a8 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`.)