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 serhiy.storchaka
Recipients Arfrever, eli.bendersky, ezio.melotti, larry, mrabarnett, pitrou, python-dev, serhiy.storchaka, tim.peters
Date 2013-08-04.17:35:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375637734.65.0.522417415939.issue18647@psf.upfronthosting.co.za>
In-reply-to
Content
The doctest engine uses a regexp which contains subpattern which now considered as illegal be the regexp engine (due to unlucky coincidence MAXREPEAT == sys.maxsize on 32-bit platforms). We should rewrite the _simple() function in the re module to be more smart. But if this assumption is correct and this subpattern is really dangerous we should also rewrite a regular expression in the doctest module. In any case we should fix SubPattern.getwidth() so that the behavior on 32-bit and 64-bit platforms should be the same.
History
Date User Action Args
2013-08-04 17:35:34serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, pitrou, larry, ezio.melotti, mrabarnett, Arfrever, eli.bendersky, python-dev
2013-08-04 17:35:34serhiy.storchakasetmessageid: <1375637734.65.0.522417415939.issue18647@psf.upfronthosting.co.za>
2013-08-04 17:35:34serhiy.storchakalinkissue18647 messages
2013-08-04 17:35:34serhiy.storchakacreate