IronPython 2.0 Beta 2.
>>> import re
>>> re.compile(r'^bar', re.M).search('foo\nbar') is not None
True
>>> re.compile(r'^bar(?m)').search('foo\nbar') is not None
FalseTwo expressions should produce the same result. This blocks Jinja, a Python template engine. -- Seo Sanghyeon _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
