(self, evt)
| 102 | print(gc.get_stats()) |
| 103 | |
| 104 | def fit_test(self, evt): |
| 105 | fits = eos.db.getFitList() |
| 106 | self.thread = FitTestThread([x.ID for x in fits], self.Parent) |
| 107 | self.thread.start() |
| 108 | |
| 109 | |
| 110 | class FitTestThread(threading.Thread): |
nothing calls this directly
no test coverage detected