Environment data
VS Code version: 1.18.1
Python Extension version: 0.8.0
Python Version: CPython 3.5.4 32b
OS and version: Windows 7 Pro SP1 x64
Actual behavior
for file in glob(bdexp.TEMP_DIR + '*.pdf'): # type: str
remove(file)
a = glob(bdexp.TEMP_DIR + '*.pdf')
On the above lines if I put the mouse cursor over the 1st glob (on the for def) Intellisense shows the def for str.
If I put the mouse cursor over the 2nd glob Intellisense shows the glob def.
Expected behavior
Intellisense should show the glob def for both situations.
Thanks,
JM
Environment data
VS Code version: 1.18.1
Python Extension version: 0.8.0
Python Version: CPython 3.5.4 32b
OS and version: Windows 7 Pro SP1 x64
Actual behavior
On the above lines if I put the mouse cursor over the 1st glob (on the for def) Intellisense shows the def for str.
If I put the mouse cursor over the 2nd glob Intellisense shows the glob def.
Expected behavior
Intellisense should show the glob def for both situations.
Thanks,
JM