(self)
| 444 | start.priority = 70 |
| 445 | |
| 446 | def exit(self): |
| 447 | try: |
| 448 | os.remove(self.pidfile) |
| 449 | self.bus.log('PID file removed: %r.' % self.pidfile) |
| 450 | except (KeyboardInterrupt, SystemExit): |
| 451 | raise |
| 452 | except Exception: |
| 453 | pass |
| 454 | |
| 455 | |
| 456 | class PerpetualTimer(threading.Timer): |
no test coverage detected