This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients docs@python, ezio.melotti, mrabarnett, py.user
Date 2012-03-09.06:06:56
SpamBayes Score 1.5649635e-05
Marked as misclassified No
Message-id <1331273217.26.0.527770128505.issue14236@psf.upfronthosting.co.za>
In-reply-to
Content
1)
help(re)

"        \s       Matches any whitespace character; equivalent to [ \t\n\r\f\v].
        \S       Matches any non-whitespace character; equiv. to [^ \t\n\r\f\v]."


no info about unicode spaces

2)
help(re.split)

"split(pattern, string, maxsplit=0, flags=0)
    Split the source string by the occurrences of the pattern,
    returning a list containing the resulting substrings."


no info about behaviour with groups in pattern
History
Date User Action Args
2012-03-09 06:06:57py.usersetrecipients: + py.user, ezio.melotti, mrabarnett, docs@python
2012-03-09 06:06:57py.usersetmessageid: <1331273217.26.0.527770128505.issue14236@psf.upfronthosting.co.za>
2012-03-09 06:06:56py.userlinkissue14236 messages
2012-03-09 06:06:56py.usercreate