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 pajs@fodder.org.uk
Recipients jnoller, pajs@fodder.org.uk, pitrou
Date 2009-10-14.15:21:23
SpamBayes Score 0.05785719
Marked as misclassified No
Message-id <1255533684.67.0.992581575249.issue7123@psf.upfronthosting.co.za>
In-reply-to
Content
Same thing occurs, as you would expect, when I do:

while True:
    fail=failureObject()
    tlist = []
    for x in ["data1", "data2"]:
        t = threading.Thread(target=checkAlive, args = (fail, x), name=x)
        t.start()
        tlist.append(t)

    for x in tlist:
        t.join()
History
Date User Action Args
2009-10-14 15:21:24pajs@fodder.org.uksetrecipients: + pajs@fodder.org.uk, pitrou, jnoller
2009-10-14 15:21:24pajs@fodder.org.uksetmessageid: <1255533684.67.0.992581575249.issue7123@psf.upfronthosting.co.za>
2009-10-14 15:21:23pajs@fodder.org.uklinkissue7123 messages
2009-10-14 15:21:23pajs@fodder.org.ukcreate