summaryrefslogtreecommitdiff
path: root/doc/faq.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/faq.rst')
-rw-r--r--doc/faq.rst17
1 files changed, 2 insertions, 15 deletions
diff --git a/doc/faq.rst b/doc/faq.rst
index 1ce9a3e..2f7dfbb 100644
--- a/doc/faq.rst
+++ b/doc/faq.rst
@@ -208,27 +208,14 @@ tricks like: ::
5. Classes and Inheritance
==========================
-5.1 When is Pylint considering a class as an interface?
--------------------------------------------------------
-
-A class is considered as an interface if there is a class named "Interface"
-somewhere in its inheritance tree.
-
-5.2 When is Pylint considering that a class is implementing a given interface?
---------------------------------------------------------------------------------
-
-Pylint is using the Zope 2 interfaces conventions, and so is
-considering that a class is implementing interfaces listed in its
-__implements__ attribute.
-
-5.3 When is Pylint considering a class as an abstract class?
+5.1 When is Pylint considering a class as an abstract class?
-------------------------------------------------------------
A class is considered as an abstract class if at least one of its
methods is doing nothing but raising NotImplementedError.
-5.4 How do I avoid "access to undefined member" messages in my mixin classes?
+5.2 How do I avoid "access to undefined member" messages in my mixin classes?
-------------------------------------------------------------------------------
To do so you have to set the ignore-mixin-members option to