summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libre.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-12-28 19:03:24 (GMT)
committerFred Drake <fdrake@acm.org>1998-12-28 19:03:24 (GMT)
commitcd058539a8044329690211c79da18feadfd82ea2 (patch)
treead0ddb155a121a5874799b183f528d2e14a86e83 /Doc/lib/libre.tex
parentd82af0b8ecce14eb6b67c7b7eb9b72ed870ddd9f (diff)
downloadcpython-cd058539a8044329690211c79da18feadfd82ea2.zip
cpython-cd058539a8044329690211c79da18feadfd82ea2.tar.gz
cpython-cd058539a8044329690211c79da18feadfd82ea2.tar.bz2
Adjust a few niggles that affected the HTML conversion (a couple of
"^"s were being dropped in the context of [^...]).
Diffstat (limited to 'Doc/lib/libre.tex')
-rw-r--r--Doc/lib/libre.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex
index 81bfd92..161cc5b 100644
--- a/Doc/lib/libre.tex
+++ b/Doc/lib/libre.tex
@@ -150,7 +150,7 @@ pattern \regexp{[]]} will match \code{']'}, for example.
You can match the characters not within a range by \dfn{complementing}
the set. This is indicated by including a
\character{\^} as the first character of the set; \character{\^} elsewhere will
-simply match the \character{\^} character. For example, \regexp{[\^5]}
+simply match the \character{\^} character. For example, \regexp{[{\^}5]}
will match any character except \character{5}.
\item[\character{|}]\code{A|B}, where A and B can be arbitrary REs,
@@ -254,7 +254,7 @@ Python's string literals.
equivalent to the set \regexp{[0-9]}.
%
\item[\code{\e D}]Matches any non-digit character; this is
-equivalent to the set \regexp{[\^0-9]}.
+equivalent to the set \regexp{[{\^}0-9]}.
%
\item[\code{\e s}]Matches any whitespace character; this is
equivalent to the set \regexp{[ \e t\e n\e r\e f\e v]}.
@@ -270,7 +270,7 @@ current locale.
%
\item[\code{\e W}]When the \constant{LOCALE} flag is not specified,
matches any non-alphanumeric character; this is equivalent to the set
-\regexp{[\^a-zA-Z0-9_]}. With \constant{LOCALE}, it will match any
+\regexp{[{\^}a-zA-Z0-9_]}. With \constant{LOCALE}, it will match any
character not in the set \regexp{[0-9_]}, and not defined as a letter
for the current locale.