Turn the space in [\^ ...] into a hard space: [\^\ ...].

This commit is contained in:
Guido van Rossum 1998-02-11 22:52:47 +00:00
parent 1c974db134
commit f5370f4019
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ equivalent to the set \code{[{\^}0-9]}.
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}]When the \code{LOCALE} flag is not specified,
matches any alphanumeric character; this is equivalent to the set

View file

@ -232,7 +232,7 @@ equivalent to the set \code{[{\^}0-9]}.
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}]When the \code{LOCALE} flag is not specified,
matches any alphanumeric character; this is equivalent to the set