(self, pidfile)
| 11 | Usage: subclass the daemon class and override the run() method.""" |
| 12 | |
| 13 | def __init__(self, pidfile): self.pidfile = pidfile |
| 14 | |
| 15 | def daemonize(self): |
| 16 | """Deamonize class. UNIX double fork mechanism.""" |
nothing calls this directly
no outgoing calls
no test coverage detected