On Fri, Sep 9, 2011 at 12:12 AM, alias <1248283536 at qq.com> wrote: > def __init__(self,arg): > for x in name: > > s=webdata('quote') What you're doing here is iterating over the letters in the string 'quote'. It's adding one job for each letter. Is that your intention? ChrisA