Autogenerate python docstrings in Visual Studio Express 2013

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 the function / class header, it will automatically generate a docstring, as shown below:

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.

+4
source share

All Articles