summaryrefslogtreecommitdiff
path: root/test/input
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-07-25 13:07:34 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-07-25 13:07:34 +0200
commit4449a950ea759331f0840435616be7591fa407a0 (patch)
treeed2da8e392fe050bea52f169ed3084df53337193 /test/input
parentee26e69c938d62c3fc48cd6848bee35ccce70637 (diff)
downloadpylint-4449a950ea759331f0840435616be7591fa407a0.tar.gz
Don't emit hidden-method message when the attribute has been monkey-patched,
you're on your own when you do that Closes http://www.logilab.org/ticket/36653
Diffstat (limited to 'test/input')
-rw-r--r--test/input/func_e0205.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/input/func_e0205.py b/test/input/func_e0205.py
deleted file mode 100644
index 34208f9..0000000
--- a/test/input/func_e0205.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# pylint: disable=R0903
-"""check method hidding ancestor attribute
-"""
-
-__revision__ = ''
-
-class Abcd(object):
- """dummy"""
- def __init__(self):
- self.abcd = 1
-
-class Cdef(Abcd):
- """dummy"""
- def abcd(self):
- """test
- """
- print self