[issue15536] re.split doesn't respect MULTILINE

2012-08-04 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> MULTILINE confuses re.split ___ Python tracker ___

[issue15536] re.split doesn't respect MULTILINE

2012-08-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Same as for issue 15537. -- nosy: +storchaka ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue15536] re.split doesn't respect MULTILINE

2012-08-02 Thread Dave Abrahams
New submission from Dave Abrahams: This session demonstrates. See especially the very last expression evaluated >>> s='''this is the end s='''this is the end ... your only friend your only friend ... the end''' the end''' >>> re.split('^', s, re.MULTILINE) re.split('^', s, re.MULTILINE) ['this i