]> granicus.if.org Git - python/commitdiff
Put {} around \^ in sets to force latex2html to do the right thing...
authorGuido van Rossum <guido@python.org>
Wed, 22 Oct 1997 03:03:44 +0000 (03:03 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 22 Oct 1997 03:03:44 +0000 (03:03 +0000)
Doc/lib/libre.tex
Doc/libre.tex

index a2bc1fdd68883286933e16220dd016a6f8de315b..bf6aeb8f44f3d5b47068da7f0440254156b20a5c 100644 (file)
@@ -215,19 +215,19 @@ beginning or end of a word.
 equivalent to the set \code{[0-9]}.
 %
 \item[\code{\e D}]Matches any non-digit character; this is
-equivalent to the set \code{[\^0-9]}.
+equivalent to the set \code{[{\^}0-9]}.
 %
 \item[\code{\e s}]Matches any whitespace character; this is
 equivalent to the set \code{[ \e t\e n\e r\e f\e v]}.
 %
 \item[\code{\e S}]Matches any non-whitespace character; this is
-equivalent to the set \code{[\^ \e t\e n\e r\e f\e v]}.
+equivalent to the set \code{[{\^} \e t\e n\e r\e f\e v]}.
 %
 \item[\code{\e w}]Matches any alphanumeric character; this is
 equivalent to the set \code{[a-zA-Z0-9_]}.
 %
 \item[\code{\e W}] Matches any non-alphanumeric character; this is
-equivalent to the set \code{[\^ a-zA-Z0-9_]}.
+equivalent to the set \code{[{\^}a-zA-Z0-9_]}.
 
 \item[\code{\e Z}]Matches only at the end of the string.
 %
index a2bc1fdd68883286933e16220dd016a6f8de315b..bf6aeb8f44f3d5b47068da7f0440254156b20a5c 100644 (file)
@@ -215,19 +215,19 @@ beginning or end of a word.
 equivalent to the set \code{[0-9]}.
 %
 \item[\code{\e D}]Matches any non-digit character; this is
-equivalent to the set \code{[\^0-9]}.
+equivalent to the set \code{[{\^}0-9]}.
 %
 \item[\code{\e s}]Matches any whitespace character; this is
 equivalent to the set \code{[ \e t\e n\e r\e f\e v]}.
 %
 \item[\code{\e S}]Matches any non-whitespace character; this is
-equivalent to the set \code{[\^ \e t\e n\e r\e f\e v]}.
+equivalent to the set \code{[{\^} \e t\e n\e r\e f\e v]}.
 %
 \item[\code{\e w}]Matches any alphanumeric character; this is
 equivalent to the set \code{[a-zA-Z0-9_]}.
 %
 \item[\code{\e W}] Matches any non-alphanumeric character; this is
-equivalent to the set \code{[\^ a-zA-Z0-9_]}.
+equivalent to the set \code{[{\^}a-zA-Z0-9_]}.
 
 \item[\code{\e Z}]Matches only at the end of the string.
 %