Docstrings: Insert spaces between parameters and @return
Brought to you by:
fabioz
It would be nice if during automatic automatic docstring generation PyDev would insert a space between @param tags and include @return tag always too:
def foo(one, two):
'''
@param one:
@type one:
@param two:
@type two:
@return:
@rtype:
'''