This is with the 2.7.5 packages in debian testing: saturn ~> python Python 2.7.5 (default, May 20 2013, 13:49:25) [GCC 4.7.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import re >>> re.compile('.*yz', re.S).findall('xyz') Traceback (most recent call last): File "<stdin>", line 1, in <module> RuntimeError: internal error in regular expression engine >>> re.compile('.?yz', re.S).findall('xyz') Traceback (most recent call last): File "<stdin>", line 1, in <module> RuntimeError: internal error in regular expression engine >>> re.compile('.+yz', re.S).findall('xyz') Traceback (most recent call last): File "<stdin>", line 1, in <module> RuntimeError: internal error in regular expression engine >>>
-- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org