Is there a way to automatically generate docstrings for python in Visual Studio Express 2013? If I remember correctly, in PyCharm if you type """ after a function/class header it automatically generates a docstring somewhat like the following:
def foo(a,b):
"""
:param a:
:param b:
:return:
"""
Ideally, I would also like to be able to edit the template/profile for the generated docstrings.