diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 10:37:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 10:37:13 (GMT) |
commit | d68ac85e9afd3d7e5dfc8fe2e2853d3371cc08d2 (patch) | |
tree | 8e3b5fd975b9342654cc71d9ee5d5c7580614268 /Lib/re.py | |
parent | 5fe0f4e369328212f5d6c14e39ed54d614dcb988 (diff) | |
parent | 3899283670b48e92260a42ce820570aef1767158 (diff) | |
download | cpython-d68ac85e9afd3d7e5dfc8fe2e2853d3371cc08d2.zip cpython-d68ac85e9afd3d7e5dfc8fe2e2853d3371cc08d2.tar.gz cpython-d68ac85e9afd3d7e5dfc8fe2e2853d3371cc08d2.tar.bz2 |
#14236: merge with 3.2.
Diffstat (limited to 'Lib/re.py')
-rw-r--r-- | Lib/re.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |