diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-07 21:12:22 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-07 22:59:36 +0100 |
commit | b16d72f8184c4352052b984acffaa1ab42dd5fa7 (patch) | |
tree | d37151fc6ebaf861763fbc53708db3e764ace78d /tests/input | |
parent | 7114fa72ee425bba2524d5ccbe67d0ae84ed9284 (diff) | |
download | pylint-git-b16d72f8184c4352052b984acffaa1ab42dd5fa7.tar.gz |
Migrate func_e0204.py to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r-- | tests/input/func_e0204.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/input/func_e0204.py b/tests/input/func_e0204.py deleted file mode 100644 index 9a0f708f0..000000000 --- a/tests/input/func_e0204.py +++ /dev/null @@ -1,20 +0,0 @@ -"""check for method without self as first argument -""" -# pylint: disable=useless-object-inheritance -from __future__ import print_function -__revision__ = 0 - - -class Abcd(object): - """dummy class""" - - def __init__(truc): - """method without self""" - print(1) - - def abdc(yoo): - """another test""" - print(yoo) - def edf(self): - """just another method""" - print('yapudju in', self) |