so far, I only found PyCharm as being able to parse docstring in order to determine a variable's type and enable autocompletion for that variable, e.g.:
def func(arg):
"""
epydoc style docstring
@type arg: str
@rtype: str
"""
arg.#<-autocomplete enabled, because we know it is a string#
...
func('test').#<-autocomplete enabled here too#
Are there other (preferably free) Python IDE that have this functionality? I tried Pydev and Spyder, which do not seem to.