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 mjkeeler7
Recipients benoit, mjkeeler7, pitrou, rhettinger, timehorse
Date 2010-10-14.02:26:04
SpamBayes Score 0.00020169797
Marked as misclassified No
Message-id <1287023166.35.0.88289873141.issue3482@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2010-10-14 02:26:06mjkeeler7setrecipients: + mjkeeler7, rhettinger, pitrou, timehorse, benoit
2010-10-14 02:26:06mjkeeler7setmessageid: <1287023166.35.0.88289873141.issue3482@psf.upfronthosting.co.za>
2010-10-14 02:26:04mjkeeler7linkissue3482 messages
2010-10-14 02:26:04mjkeeler7create