Support python2 style type hints for intellisense
Issue Type: Feature Request
Intellisense for python is able to understand python3 style inline type hints but not python2 style comment type hints.
Extension version: 2019.10.44104 VS Code version: Code 1.40.1 (8795a9889db74563ddd43eb0a897a2384129a619, 2019-11-13T16:49:30.162Z) OS version: Linux x64 4.19.67-2rodete2-amd64
Here are screenshots for the problem. Type hints not working:

Type hints working:

@qu1ck Are you using jedi or Language Server? Check your settings and see if jediEnabled is set.
@karthiknadig I'm not using jedi.
This would be 💯. Unfortunately my company still has a bunch of legacy code in Python 2, and although we try to use type comments wherever I always get sad when I switch over to one of these projects and lose autocomplete/jump-to-def (I use https://github.com/emacs-lsp/lsp-python-ms/)
This is unlikely to happen. We are mostly working on Pylance LS (which does not support Python 2) and Python 2 is at the end of life. For Python 2 Jedi is the option.
Feasibly you can run pyright (the core of pylance) in emacs, as it supports these sorts of annotations as of last month, but that's not really a supported method.