summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-20 01:53:37 (GMT)
committerGitHub <noreply@github.com>2021-09-20 01:53:37 (GMT)
commit697b6650ed29cdd4c347e9d35c43e084eff22c5f (patch)
tree21371b06a59813b72c1109355e44861b85500083 /Doc
parent0e9608680525b120fc8eaad9f1cb2f729a6c22ae (diff)
downloadcpython-697b6650ed29cdd4c347e9d35c43e084eff22c5f.zip
cpython-697b6650ed29cdd4c347e9d35c43e084eff22c5f.tar.gz
cpython-697b6650ed29cdd4c347e9d35c43e084eff22c5f.tar.bz2
Docs: Clarify the before_and_after() example (GH-28458) (#28464)
(cherry picked from commit fcbf9b176b1190301c760a921601c6488ef8b070) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/itertools.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index ac6b354..61d8b86 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -859,10 +859,11 @@ which incur interpreter overhead.
""" Variant of takewhile() that allows complete
access to the remainder of the iterator.
- >>> all_upper, remainder = before_and_after(str.isupper, 'ABCdEfGhI')
- >>> str.join('', all_upper)
+ >>> it = iter('ABCdEfGhI')
+ >>> all_upper, remainder = before_and_after(str.isupper, it)
+ >>> ''.join(all_upper)
'ABC'
- >>> str.join('', remainder)
+ >>> ''.join(remainder) # takewhile() would lose the 'd'
'dEfGhI'
Note that the first iterator must be fully