138 taskQueue.put("STOP") |
138 taskQueue.put("STOP") |
139 |
139 |
140 for worker in workers: |
140 for worker in workers: |
141 worker.join() |
141 worker.join() |
142 worker.close() |
142 worker.close() |
|
143 |
|
144 taskQueue.close() |
|
145 doneQueue.close() |
143 |
146 |
144 |
147 |
145 def workerTask(inputQueue, outputQueue): |
148 def workerTask(inputQueue, outputQueue): |
146 """ |
149 """ |
147 Module function acting as the parallel worker for the syntax check. |
150 Module function acting as the parallel worker for the syntax check. |