summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-06 18:21:50 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-06 18:21:50 +0300
commit456656aee7649ce8220dc387616b37448fdd8fc3 (patch)
tree023b02a85e9051b7779b9500dd480ef1b2d244e5 /doc
parent8e2edc0e867797681ab65960259528e3a34e6620 (diff)
downloadpylint-456656aee7649ce8220dc387616b37448fdd8fc3.tar.gz
Remove entries regarding interfaces from the documentation.
Diffstat (limited to 'doc')
-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