#14236: merge with 3.2.

This commit is contained in:
Ezio Melotti 2012-04-29 13:37:13 +03:00
commit d68ac85e9a
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ resulting RE will match the second character.
bytes patterns or string patterns with the ASCII flag. bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the whole In string patterns without the ASCII flag, it will match the whole
range of Unicode whitespace characters. range of Unicode whitespace characters.
\S Matches any non-whitespace character; equiv. to [^ \t\n\r\f\v]. \S Matches any non-whitespace character; equivalent to [^\s].
\w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_] \w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_]
in bytes patterns or string patterns with the ASCII flag. in bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the In string patterns without the ASCII flag, it will match the