Commit 8e0c82a3 authored by Fred Drake's avatar Fred Drake

Fix stupid typo in example.

parent 83d14c12
......@@ -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}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment