本文整理匯總了Python中pylint.checkers.utils.check_messages方法的典型用法代碼示例。如果您正苦於以下問題:Python utils.check_messages方法的具體用法?Python utils.check_messages怎麽用?Python utils.check_messages使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pylint.checkers.utils
的用法示例。
在下文中一共展示了utils.check_messages方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_deprecated_methods
# 需要導入模塊: from pylint.checkers import utils [as 別名]
# 或者: from pylint.checkers.utils import check_messages [as 別名]
def test_deprecated_methods(self):
class Checker(object):
def __init__(self):
self.called = False
@check_messages("first-message")
def visit_assname(self, node):
self.called = True
linter = self.MockLinter({"first-message": True})
walker = utils.PyLintASTWalker(linter)
checker = Checker()
walker.add_checker(checker)
with warnings.catch_warnings(record=True):
warnings.simplefilter("always")
walker.walk(astroid.parse("x = 1"))
assert not checker.called
示例2: test_pylint_visit_method_taken_in_account
# 需要導入模塊: from pylint.checkers import utils [as 別名]
# 或者: from pylint.checkers.utils import check_messages [as 別名]
def test_pylint_visit_method_taken_in_account(linter):
class CustomChecker(checkers.BaseChecker):
__implements__ = interfaces.IAstroidChecker
name = "custom"
msgs = {"W9999": ("", "custom", "")}
@check_messages("custom")
def visit_class(self, _):
pass
linter.register_checker(CustomChecker(linter))
linter.open()
out = StringIO()
linter.set_reporter(text.TextReporter(out))
linter.check("abc")