(signal, frame)
| 182 | asyncore.loop(1) |
| 183 | |
| 184 | def signals(signal, frame): |
| 185 | print "Got signal, terminating" |
| 186 | for thread in threading.enumerate(): |
| 187 | if thread.isAlive() and isinstance(thread, StoppableThread): |
| 188 | thread.stopThread() |
| 189 | |
| 190 | def runServer(): |
| 191 | print "Running SMTPd thread" |
nothing calls this directly
no test coverage detected