From: Ezio Melotti Date: Sun, 29 Apr 2012 05:23:25 +0000 (+0300) Subject: #14236: mention Unicode whitespace in \s documentation. X-Git-Tag: v3.3.0a3~44^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e990092fd0e17f79f282f4009ce1676bfde09ab4;p=thirdparty%2FPython%2Fcpython.git #14236: mention Unicode whitespace in \s documentation. --- diff --git a/Lib/re.py b/Lib/re.py index 3fd59df8bc8e..45de5a2ffa8c 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -69,7 +69,10 @@ resulting RE will match the second character. In string patterns without the ASCII flag, it will match the whole range of Unicode digits. \D Matches any non-digit character; equivalent to [^\d]. - \s Matches any whitespace character; equivalent to [ \t\n\r\f\v]. + \s Matches any whitespace character; equivalent to [ \t\n\r\f\v] in + 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]. \w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_] in bytes patterns or string patterns with the ASCII flag.