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 tebeka
Recipients tebeka
Date 2009-05-19.19:13:59
SpamBayes Score 2.3135592e-05
Marked as misclassified No
Message-id <1242760441.53.0.863717257975.issue6064@psf.upfronthosting.co.za>
In-reply-to
Content
It would be nice if threading.Thread constructor will have a "daemon"
argument as well.

This way we'll be able to write
    Thread(target=some_function, daemon=1).start()

Instead of currently writing
    t = Thread(target=some_function)
    t.daemon = True
    t.start()
History
Date User Action Args
2009-05-19 19:14:01tebekasetrecipients: + tebeka
2009-05-19 19:14:01tebekasetmessageid: <1242760441.53.0.863717257975.issue6064@psf.upfronthosting.co.za>
2009-05-19 19:14:00tebekalinkissue6064 messages
2009-05-19 19:14:00tebekacreate