From a7958d2d36619a0433090885857b1d2adba119db Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sun, 29 Apr 2012 13:35:55 +0300 Subject: #14236: fix docs for \S. --- Lib/re.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/re.py') diff --git a/Lib/re.py b/Lib/re.py index 45de5a2ffa..85c5a57024 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -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 -- cgit v1.2.1