Commit d68ac85e authored by Ezio Melotti's avatar Ezio Melotti

#14236: merge with 3.2.

parents 5fe0f4e3 38992836
......@@ -73,7 +73,7 @@ resulting RE will match the second character.
bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the whole
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_]
in bytes patterns or string patterns with the ASCII flag.
In string patterns without the ASCII flag, it will match the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment