diff options
| author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-25 13:07:34 +0200 |
|---|---|---|
| committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-25 13:07:34 +0200 |
| commit | 4449a950ea759331f0840435616be7591fa407a0 (patch) | |
| tree | ed2da8e392fe050bea52f169ed3084df53337193 /test/input | |
| parent | ee26e69c938d62c3fc48cd6848bee35ccce70637 (diff) | |
| download | pylint-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.py | 17 |
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 |
