188 taskQueue.put("STOP") |
188 taskQueue.put("STOP") |
189 |
189 |
190 for worker in workers: |
190 for worker in workers: |
191 worker.join() |
191 worker.join() |
192 worker.close() |
192 worker.close() |
|
193 |
|
194 taskQueue.close() |
|
195 doneQueue.close() |
193 |
196 |
194 |
197 |
195 def workerTask(inputQueue, outputQueue): |
198 def workerTask(inputQueue, outputQueue): |
196 """ |
199 """ |
197 Module function acting as the parallel worker for the syntax check. |
200 Module function acting as the parallel worker for the syntax check. |