Files
openide/python/testData/quickFixes/PyMoveAttributeToInitQuickFixTest/moveToInit_after.py
2014-01-15 18:32:25 +04:00

10 lines
129 B
Python

__author__ = 'ktisha'
class A:
def __init__(self):
self.b = 1
self._a = 1
def foo(self):
c = 1