summaryrefslogtreecommitdiff
path: root/test/input/func_e0204.py
blob: ecbc51c39b9e3d83b31f9e381542580239e91ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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