Hello,
I am trying to run a Thread to parse a list of links using the universal feed parser, but when I start the thread I get a Trace/BPT trap.
Here's the code I am using:
class parseRssFiles(Thread):
def __init__ (self,rssLinks):
Thread.__init__(self)
self.rssLinks = rssLinks
def run(self):
self.rssContents = [ feedparser.parse(link) for link in rssLinks]
Is there any other way to do this?
Link to the report generated by Mac OS X 10.6.2: http://simaom.com/trace.txt
Thanks