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