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 christian.heimes
Recipients benjamin.peterson, christian.heimes, ezio.melotti, jdemeyer, mrabarnett, serhiy.storchaka
Date 2013-05-17.16:33:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368808429.73.0.962605752741.issue17998@psf.upfronthosting.co.za>
In-reply-to
Content
I'm able to confirm Benjamin's notes. The regexp works on 64bit Linux but fails with a 32bit build:

$ CFLAGS="-m32" LDFLAGS="-m32" ./configure
$ make -j10
$ ./python -c "import re; print(re.compile('(.*)\.[0-9]*\.[0-9]*$', re.I|re.S).findall('3.0.0'))"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
RuntimeError: internal error in regular expression engine
History
Date User Action Args
2013-05-17 16:33:49christian.heimessetrecipients: + christian.heimes, benjamin.peterson, ezio.melotti, mrabarnett, serhiy.storchaka, jdemeyer
2013-05-17 16:33:49christian.heimessetmessageid: <1368808429.73.0.962605752741.issue17998@psf.upfronthosting.co.za>
2013-05-17 16:33:49christian.heimeslinkissue17998 messages
2013-05-17 16:33:49christian.heimescreate