(self)
| 99 | class SearchWorkerThread(threading.Thread): |
| 100 | |
| 101 | def __init__(self): |
| 102 | threading.Thread.__init__(self) |
| 103 | self.name = "SearchWorker" |
| 104 | self.jargonLoader = JargonLoader.instance() |
| 105 | # load the jargon while in an out-of-thread context, to spot any problems while in the main thread |
| 106 | self.jargonLoader.get_jargon() |
| 107 | self.jargonLoader.get_jargon().apply('test string'.split()) |
| 108 | self.running = True |
| 109 | |
| 110 | def run(self): |
| 111 | self.cv = threading.Condition() |
nothing calls this directly
no test coverage detected