\ This is the mainloop of a worker process. You should override this method in a subclass to provide the intended behaviour for your particular evil schemes.
(self)
| 76 | self.tmp.notify() |
| 77 | |
| 78 | def run(self): |
| 79 | """\ |
| 80 | This is the mainloop of a worker process. You should override |
| 81 | this method in a subclass to provide the intended behaviour |
| 82 | for your particular evil schemes. |
| 83 | """ |
| 84 | raise NotImplementedError() |
| 85 | |
| 86 | def init_process(self): |
| 87 | """\ |
no outgoing calls
no test coverage detected