
senthil at uthcode
Apr 30, 2012, 5:12 AM
Post #1 of 1
(62 views)
Permalink
|
|
Re: [Python-checkins] cpython (3.2): #14236: fix docs for \S.
|
|
On Sun, Apr 29, 2012 at 12:37:25PM +0200, ezio.melotti wrote: > 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]. Is this correct? While I understand what meant (or implied) \s is not a valid ascii character in the documentation we denoted the sets using ascii characters only. -- Senthil _______________________________________________ Python-Dev mailing list Python-Dev [at] python http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com
|