how do i set the regular expressions flags like multiline and ignorecase in python 2.3?
in python 2.6 its like this
re.findall(pattern,string, re.multiline | re.ignorecase)
but this doesn't seem to wok for python 2.3, any ideas?
pointers appreciated
edit: sorry, it was python 2.3 not 2.4