summaryrefslogtreecommitdiff
path: root/test/input/func_e0204.py
diff options
context:
space:
mode:
authorroot <none@none>2006-04-26 10:48:09 +0000
committerroot <none@none>2006-04-26 10:48:09 +0000
commit4becf6f9e596b45401680c4947e2d92c953d5e08 (patch)
tree3bb03a16daa8c780bf60c622dc288eb01cfca145 /test/input/func_e0204.py
downloadpylint-git-4becf6f9e596b45401680c4947e2d92c953d5e08.tar.gz
forget the past.
forget the past.
Diffstat (limited to 'test/input/func_e0204.py')
-rw-r--r--test/input/func_e0204.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/input/func_e0204.py b/test/input/func_e0204.py
new file mode 100644
index 000000000..ecbc51c39
--- /dev/null
+++ b/test/input/func_e0204.py
@@ -0,0 +1,19 @@
+"""check for method without self as first argument
+"""
+
+__revision__ = 0
+
+
+class Abcd:
+ """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