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 exarkun
Recipients exarkun, ezio.melotti, michael.foord, mrabarnett, olivers
Date 2010-03-04.23:25:32
SpamBayes Score 1.0440497e-09
Marked as misclassified No
Message-id <1267745135.94.0.762065745211.issue8064@psf.upfronthosting.co.za>
In-reply-to
Content
I think it's likely that the test program does drastically different things on Linux than it does on OS X:

Python 2.6.4 (r264:75706, Dec  7 2009, 18:45:15)
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import regextest
>>> len(regextest.makew())
93455
>>>

Compare to:

Python 2.6.1 (r261:67515, Jul  7 2009, 23:51:51)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import regextest
>>> len(regextest.makew())
47672
>>> 


If I modify it to use 65535 (sys.maxunicode on OS X) and then run it on Linux, it completes quite quickly.
History
Date User Action Args
2010-03-04 23:25:36exarkunsetrecipients: + exarkun, ezio.melotti, mrabarnett, michael.foord, olivers
2010-03-04 23:25:35exarkunsetmessageid: <1267745135.94.0.762065745211.issue8064@psf.upfronthosting.co.za>
2010-03-04 23:25:33exarkunlinkissue8064 messages
2010-03-04 23:25:32exarkuncreate