--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Tue Mar 07 18:53:18 2017 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Tue Mar 07 19:46:57 2017 +0100 @@ -166,16 +166,16 @@ taskQueue.put('STOP') -def worker(input, output): +def worker(inputQueue, outputQueue): """ Module function acting as the parallel worker for the style check. - @param input input queue (multiprocessing.Queue) - @param output output queue (multiprocessing.Queue) + @param inputQueue input queue (multiprocessing.Queue) + @param outputQueue output queue (multiprocessing.Queue) """ - for filename, source, args in iter(input.get, 'STOP'): + for filename, source, args in iter(inputQueue.get, 'STOP'): result = __checkCodeStyle(filename, source, args) - output.put((filename, result)) + outputQueue.put((filename, result)) def __checkCodeStyle(filename, source, args):