
VScode show the message "No definition for ..."
VScode will open the definition for the imported classes/functions in the third-party library.
Please provide as much info as you readily know
Microsoft Data Science for VS Code Engineering Team: @rchiodo, @IanMatthewHuff, @DavidKutu, @DonJayamanne, @greazer
This is currently by design; we throw away this info in library files to save memory. See #840.
Hi @jakebailey , I understood the limitations. So can we have an option to specifies which third-party libraries should be analyzed?
You can try adding:
"python.analysis.memory.keepLibraryAst": true,
"python.analysis.memory.keepLibraryLocalVariables": true,
To your config, but it may not fully change this behavior. Note the memory usage will be significant.
Most helpful comment
You can try adding:
To your config, but it may not fully change this behavior. Note the memory usage will be significant.