ó
'![c           @   s    d  Z  d e f d „  ƒ  YZ d S(   s;   Checks that missing self in method defs don't crash Pylint.t   MyClassc           B   s2   e  Z d  Z d „  Z d „  Z d „  Z d „  Z RS(   s,   A class with some methods missing self args.c         C   s   d |  _  d  S(   Nt   var(   R   (   t   self(    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyt   __init__   s    c           C   s   d S(   s!   A method without a self argument.N(    (    (    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyt   method   s    c           C   s   d t  _ d S(   s,   A method without a self argument, but usage.i   N(   R   R   (    (    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyt   setup   s    c         C   s   d |  _  d S(   s   Correct.t   correctN(   R   (   R   (    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyR      s    (   t   __name__t
   __module__t   __doc__R   R   R   R   (    (    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyR       s
   			N(   R	   t   objectR    (    (    (    sK   lib/python2.7/site-packages/pylint/test/functional/missing_self_argument.pyt   <module>   s   