summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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`.)