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 johnsonm
Recipients adi, akuchling, effbot, ezio.melotti, gpolo, greg@gregdetre.co.uk, gvanrossum, johnsonm, kristall, mathieu.clabaut, ostkamp, pitrou, rsc, timehorse
Date 2009-11-13.17:00:29
SpamBayes Score 5.72738e-09
Marked as misclassified No
Message-id <1258131631.9.0.452971331396.issue1160@psf.upfronthosting.co.za>
In-reply-to
Content
I also ran into this issue, and dealt with it as suggested here by
changing to sets.  Because I have underlying code that has to deal both
with small hand-crafted regular expressions and arbitrarily-large
machine-generated sets of paths, I subclassed set and implemented the
match and search methods in my subclass so that the underlying code
would work both against the hand-generated regular expressions and the
machine-generated sets of paths.  Hope this helps someone else who runs
into this restriction.
History
Date User Action Args
2009-11-13 17:00:32johnsonmsetrecipients: + johnsonm, gvanrossum, effbot, akuchling, pitrou, ostkamp, rsc, timehorse, mathieu.clabaut, gpolo, ezio.melotti, greg@gregdetre.co.uk, adi, kristall
2009-11-13 17:00:31johnsonmsetmessageid: <1258131631.9.0.452971331396.issue1160@psf.upfronthosting.co.za>
2009-11-13 17:00:30johnsonmlinkissue1160 messages
2009-11-13 17:00:29johnsonmcreate