Message88088
| 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:01 | tebeka | set | recipients: + tebeka |
| 2009-05-19 19:14:01 | tebeka | set | messageid: <1242760441.53.0.863717257975.issue6064@psf.upfronthosting.co.za> |
| 2009-05-19 19:14:00 | tebeka | link | issue6064 messages |
| 2009-05-19 19:14:00 | tebeka | create | |