summaryrefslogtreecommitdiff
path: root/pylint/interfaces.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-17 03:08:25 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-17 03:08:25 +0200
commitdc071966398d26159773ec627c954cf651d3036e (patch)
tree845cbc45a3399c17837bf4c2d03e1e40e2e7c74d /pylint/interfaces.py
parent45780992de1fe5b55c756a2f279052ba8d36ad5f (diff)
downloadpylint-git-dc071966398d26159773ec627c954cf651d3036e.tar.gz
Remove features in 1.6.0 which were scheduled for removal.
Diffstat (limited to 'pylint/interfaces.py')
-rw-r--r--pylint/interfaces.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/pylint/interfaces.py b/pylint/interfaces.py
index 35e2a3e66..c7791e523 100644
--- a/pylint/interfaces.py
+++ b/pylint/interfaces.py
@@ -86,13 +86,9 @@ class IAstroidChecker(IChecker):
class IReporter(Interface):
""" reporter collect messages and display results encapsulated in a layout
"""
- def add_message(self, msg_id, location, msg):
- """add a message of a given type
- msg_id is a message identifier
- location is a 3-uple (module, object, line)
- msg is the actual message
- """
+ def handle_message(self, msg):
+ """Handle the given message object."""
def display_results(self, layout):
"""display results encapsulated in the layout tree