From: Fred Drake Date: Sat, 16 Mar 2002 13:53:23 +0000 (+0000) Subject: Fix stupid typo in example. X-Git-Tag: v2.2.1c1~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ed6918c1ce48374475e9bd69e1caeb98bd15c64;p=thirdparty%2FPython%2Fcpython.git Fix stupid typo in example. --- diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 6df682c24da0..99f7b3acd44a 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -285,7 +285,7 @@ likely want to use the \function{search()} function rather than the \begin{verbatim} >>> import re ->>> m = re.search('(?<=abc)def', 'abdef') +>>> m = re.search('(?<=abc)def', 'abcdef') >>> m.group(0) 'def' \end{verbatim}