From: Fred Drake Date: Mon, 25 Feb 2002 18:57:04 +0000 (+0000) Subject: Fix error in explanation of the interaction between $ and MULTILINE mode. X-Git-Tag: v2.2.1c1~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b38f188f348d57f07bb71dfc7789bc14cd2d4140;p=thirdparty%2FPython%2Fcpython.git Fix error in explanation of the interaction between $ and MULTILINE mode. Reported by Steve Alexander. --- diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 37c249e926cb..1c1407258c52 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -101,7 +101,7 @@ after each newline. newline at the end of the string, and in \constant{MULTILINE} mode also matches before a newline. \regexp{foo} matches both 'foo' and 'foobar', while the regular expression \regexp{foo\$} matches only -'foo'. More interestingly, searching for \regexp{foo\$} in +'foo'. More interestingly, searching for \regexp{foo.\$} in 'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally, but 'foo1' in \constant{MULTILINE} mode.