I've been using PyTools for Visual Studio 2013 and am wondering if it's possible to document paramaters in such a way that both intellisense and DOxygen understand them.
For example I've been trying like this (snippet taken from PEP257):
def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments:
real -- the real part (default 0.0)
imag -- the imaginary part (default 0.0)
"""
print("Test func running")
if __name__ == '__main__':
complex(
...but Intellisense doesn't seem to pick up the argument descriptions: