當前位置: 首頁>>代碼示例>>Python>>正文


Python reporters.BaseReporter類代碼示例

本文整理匯總了Python中pylint.reporters.BaseReporter的典型用法代碼示例。如果您正苦於以下問題:Python BaseReporter類的具體用法?Python BaseReporter怎麽用?Python BaseReporter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BaseReporter類的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: set_output

    def set_output(self, output=None):
        """set output stream

        messages buffered for old output is processed first"""
        if self.out and self.msgs:
            self._display(Section())
        BaseReporter.set_output(self, output)
開發者ID:510908220,項目名稱:pylint,代碼行數:7,代碼來源:html.py

示例2: __init__

    def __init__(self, output=sys.stdout):
        """
        Initiate the the base reporter.

        @param output: output stream
        """
        BaseReporter.__init__(self, output)
開發者ID:mithrandi,項目名稱:twistedchecker,代碼行數:7,代碼來源:test.py

示例3: __init__

 def __init__(self, gui, output=sys.stdout):
     """init"""
     BaseReporter.__init__(self, output)
     self.msgs = []
     self.gui = gui
開發者ID:hzruandd,項目名稱:vimrc,代碼行數:5,代碼來源:guireporter.py

示例4: __init__

 def __init__(self, output=sys.stdout):
     BaseReporter.__init__(self, output)
     self.msgs = []
     # Add placeholders for title and parsed messages
     self.header = None
     self.msgargs = []
開發者ID:510908220,項目名稱:pylint,代碼行數:6,代碼來源:html.py

示例5: __init__

 def __init__(self, output=sys.stdout):
     BaseReporter.__init__(self, output)
     self.messages = []
開發者ID:AtomLinter,項目名稱:linter-pylama,代碼行數:3,代碼來源:json.py

示例6: __init__

 def __init__(self, output=sys.stdout):
     BaseReporter.__init__(self, output)
     self._modules = {}
開發者ID:0Chuzz,項目名稱:python-mode,代碼行數:3,代碼來源:text.py

示例7: __init__

 def __init__(self, output=None):
     BaseReporter.__init__(self, output)
     self._modules = set()
     self._template = None
開發者ID:allanlewis,項目名稱:ogma,代碼行數:4,代碼來源:reporter.py

示例8: __init__

 def __init__(self, message_store):
     BaseReporter.__init__(self, output=None)
     self._message_store = message_store
     self._messages = []
開發者ID:landscapeio,項目名稱:prospector,代碼行數:4,代碼來源:collector.py

示例9: __init__

 def __init__(self, output=None):
     BaseReporter.__init__(self, output)
     self.current_module = None
     self.data = []
開發者ID:andras-tim,項目名稱:pytest-pylint,代碼行數:4,代碼來源:pytest_pylint.py

示例10: __init__

 def __init__(self, output=None):
     BaseReporter.__init__(self, output)
     self._modules = {}
開發者ID:DINKIN,項目名稱:XDM,代碼行數:3,代碼來源:text.py

示例11: __init__

 def __init__(self, linter, output=None):
   BaseReporter.__init__(self, output)
   self.m_linter = linter
   self.m_data   = {}
開發者ID:Anvil,項目名稱:xtd,代碼行數:4,代碼來源:xtdlint.py

示例12: __init__

 def __init__(self, output=None):
     BaseReporter.__init__(self, output)
開發者ID:JacobNinja,項目名稱:exercism-analysis,代碼行數:2,代碼來源:pylint_runner.py

示例13: __init__

 def __init__(self, root, output=sys.stdout):
     BaseReporter.__init__(self, output)
     # messages is in the following format:
     # filepath : { msgid : [ (lineno, msg) ] }
     self.root = root
     self.messages = defaultdict(lambda : defaultdict(list))
開發者ID:kevinjqiu,項目名稱:aniketos,代碼行數:6,代碼來源:pylint.py


注:本文中的pylint.reporters.BaseReporter類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。