Message294808
Currently in order to have daemonic Timer objects one must instantiate the class, set daemonic status through the property (Timer.daemon=True), and then start the Timer. It would be nice to have the ability to set the daemonic status of the Timer class during instantiation, similar to what is possible with the Thread superclass.
This is a trivial enhancement to implement: simply add the daemon keyword argument to the Timer constructor, defaulted to None, and pass it on to the Thread constructor in the call to super().__init__. |
|
Date |
User |
Action |
Args |
2017-05-31 02:54:13 | awolokita | set | recipients:
+ awolokita |
2017-05-31 02:54:13 | awolokita | set | messageid: <1496199253.36.0.456621970472.issue30519@psf.upfronthosting.co.za> |
2017-05-31 02:54:13 | awolokita | link | issue30519 messages |
2017-05-31 02:54:13 | awolokita | create | |
|