You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
682 B
Python
28 lines
682 B
Python
""" reporter used by gui.py """
|
|
|
|
import sys
|
|
|
|
from pylint.interfaces import IReporter
|
|
from pylint.reporters import BaseReporter
|
|
from logilab.common.ureports import TextWriter
|
|
|
|
|
|
class GUIReporter(BaseReporter):
|
|
"""saves messages"""
|
|
|
|
__implements__ = IReporter
|
|
extension = ''
|
|
|
|
def __init__(self, gui, output=sys.stdout):
|
|
"""init"""
|
|
BaseReporter.__init__(self, output)
|
|
self.gui = gui
|
|
|
|
def handle_message(self, msg):
|
|
"""manage message of different type and in the context of path"""
|
|
self.gui.msg_queue.put(msg)
|
|
|
|
def _display(self, layout):
|
|
"""launch layouts display"""
|
|
TextWriter().format(layout, self.out)
|