Files
openide/python/testData/quickFixes/PyAddMethodQuickFixTest/addInitAfterDocstring_after.py
Mikhail Golubev 532e18e4d9 Add "Py" prefix to AddImportQuickFixTest and several other quick fix tests
otherwise it's easy to overlook it especially considering that there is
also (confusingly) PyAddImportTest
2017-03-21 18:10:12 +03:00

10 lines
142 B
Python

__author__ = 'ktisha'
class <caret>A:
""" class docstring"""
def __init__(self):
pass
def foo(self):
self.b = 1