third_party.pylibs.pylint.src/pylint/test/input/func_attrs_definition_order.py
2015-02-14 18:13:20 +02:00

34 lines
750 B
Python

# pylint: disable=R0903, print-statement
"""yo"""
__revision__ = '$I$'
class Aaaa(object):
"""class with attributes defined in wrong order"""
def __init__(self):
var1 = self._var2
self._var2 = 3
print var1
class Bbbb(object):
"""hop"""
__revision__ = __revision__ # no problemo marge
def __getattr__(self, attr):
# pylint: disable=W0201
try:
return self.__repo
except AttributeError:
self.__repo = attr
return attr
def catchme(self, attr):
"""no AttributeError catched"""
# pylint: disable=W0201
try:
return self._repo
except ValueError:
self._repo = attr
return attr