Currently using Intellisense + Pylance Extension in VS Code.
In the following code, the autocompletion doesn’t show getcode() as an option when writing “f.” in the last line. (The completion works fine for “urlib.” and “urllib.request.”)
`import urllib.request
import urllib.parse
f = urllib.request.urlopen("https://www.microsoft.com")
f.getcode()`
Currently using Intellisense + Pylance Extension in VS Code.
In the following code, the autocompletion doesn’t show getcode() as an option when writing “f.” in the last line. (The completion works fine for “urlib.” and “urllib.request.”)
`import urllib.request
import urllib.parse
f = urllib.request.urlopen("https://www.microsoft.com")
f.getcode()`