Files
openide/python/testData/refactoring/rename/docstringParams.py

9 lines
172 B
Python

class SomeClass(object):
""" Awesome class
@ivar someVar: great stuff
@type someVar: string
"""
def __init__(self):
self.some<caret>Var = None