Matt Keeler <mjkeel...@gmail.com> added the comment:

Python 2.7 docs say this was added in 2.7.3.1
Python 3.1 docs say this was added in 3.1

The problem with calling 're.split(pattern, string, re.I)' is that you are 
using positional arguments only.  If you were to do 're.split(pattern, string, 
flags=re.I)', that should produce the desired result.

----------
nosy: +mjkeeler7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue3482>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to