microsoft / vscode-python

Python extension for Visual Studio Code
https://aka.ms/pvsc-marketplace
MIT License
4.28k stars 1.17k forks source link

Pylint generates false positives on importing 3rd party modules when using a virtual environment. #6976

Closed JeffHanna closed 5 years ago

JeffHanna commented 5 years ago

Environment data

Expected behaviour

Pylint would not generate false positive "Unable to import..." errors for 3rd party modules in my script.

Actual behaviour

Pylint generates "Unable to import..." errors for both matplotlib and numpy 3rd party modules installed into my virtual environment.

Steps to reproduce:

  1. use pip to install pylint into your root Python installation.
  2. Make a virtual environment
  3. Use pip to add matplotlib and numpy
  4. Create a script that imports matplotlib and numpy
  5. Ensure VS Code is using the venv's python interpreter
  6. Ensure linting is enabled and Pylint is selected.
  7. Note that both matplotlib and numpy are flagged as unable to import by Pylint.

Logs

Output for Python in the Output panel (View→Output, change the drop-down the upper-right of the Output panel to Python)

User belongs to experiment group 'AlwaysDisplayTestExplorer - experiment'
User belongs to experiment group 'ShowPlayIcon - control'
> conda --version
> pyenv root
> python3.7 -c "import sys;print(sys.executable)"
> python3.6 -c "import sys;print(sys.executable)"
> python3 -c "import sys;print(sys.executable)"
> python2 -c "import sys;print(sys.executable)"
> python -c "import sys;print(sys.executable)"
> py -3.7 -c "import sys;print(sys.executable)"
> py -3.6 -c "import sys;print(sys.executable)"
> py -3 -c "import sys;print(sys.executable)"
> py -2 -c "import sys;print(sys.executable)"
> d:\Repos\NACA_Wing_Creator\env\Scripts\python.exe -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
Starting Microsoft Python language server.
> ~\AppData\Local\Programs\Python\Python37\Scripts\mypy --ignore-missing-imports --follow-imports=silent --show-column-numbers d:\Repos\NACA_Wing_Creator\naca.py
cwd: d:\Repos\NACA_Wing_Creator
> ~\AppData\Local\Programs\Python\Python37\Scripts\pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Repos\NACA_Wing_Creator\naca.py
cwd: d:\Repos\NACA_Wing_Creator
##########Linting Output - mypy##########
[Info  - 7:01:21 AM] Analysis cache path: C:\Users\jeffb\AppData\Local\Microsoft\Python Language Server
[Info  - 7:01:21 AM] GetCurrentSearchPaths d:\Repos\NACA_Wing_Creator\env\Scripts\python.exe 
[Info  - 7:01:21 AM] Interpreter search paths:
[Info  - 7:01:21 AM]     c:\users\jeffb\appdata\local\programs\python\python37\dlls
[Info  - 7:01:21 AM]     c:\users\jeffb\appdata\local\programs\python\python37\lib
[Info  - 7:01:21 AM]     c:\users\jeffb\appdata\local\programs\python\python37
[Info  - 7:01:21 AM]     d:\repos\naca_wing_creator\env
[Info  - 7:01:21 AM]     d:\Repos\NACA_Wing_Creator\env\lib\site-packages\numpy
[Info  - 7:01:21 AM]     d:\Repos\NACA_Wing_Creator\env\lib\site-packages\matplotlib
[Info  - 7:01:21 AM]     d:\repos\naca_wing_creator\env\lib\site-packages
[Info  - 7:01:21 AM] User search paths:
##########Linting Output - pylint##########
************* Module naca
7,0,error,import-error:Unable to import 'matplotlib.pyplot'
8,0,error,import-error:Unable to import 'numpy'

------------------------------------------------------------------

Your code has been rated at 8.70/10 (previous run: 8.70/10, +0.00)

[Info  - 7:01:22 AM] Microsoft Python Language Server version 0.3.47.0
[Info  - 7:01:22 AM] Initializing for d:\Repos\NACA_Wing_Creator\env\Scripts\python.exe
> conda info --json
> conda --version

Output from Console under the Developer Tools panel (toggle Developer Tools on under Help; turn on source maps to make any tracebacks be useful by running Enable source map support for extension debugging)

extensionHost.ts:293 [Extension Host] debugger listening on port 21764
console.ts:137 [Extension Host] (node:17848) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 2ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 27ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 15ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 13ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 11ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Register Interpreter Watcher, Class name = p, completed in 9ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 9ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 7ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 6ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Build the workspace interpreter watcher, Class name = h, completed in 11ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, , Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > d:\Repos\NACA_Wing_Creator\env\Scripts\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters, Class name = g, completed in 225ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: > ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule system is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.4 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule currentPath is {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command py and args -2 failed as file Python 2 not found!

 -3.7-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command py and args -3.6 failed as file Python 3.6 not found!

 -3.7-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Detection of Python Interpreter for Command python3 and args  failed as file  does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: setGlobalInterpreter, Class name = f, completed in 29ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = cachedInterpreters, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 212ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 310ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 311ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Build the workspace interpreter watcher, Class name = h, completed in 2ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 3ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}]
4console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters, Class name = g, completed in 2ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule system is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.4 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule currentPath is {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 9ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by WorkspaceVirtualEnvService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by WorkspaceVirtualEnvService are [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CurrentPathService are of count 4
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.4 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Get language server folder name, Class name = f, completed in 13ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: "languageServer.0.3.47"
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Failed to parse interpreter information for 'C:\Users\jeffb\AppData\Local\Microsoft\WindowsApps\python3.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0   at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\jeffb\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Failed to parse interpreter information for 'C:\Users\jeffb\AppData\Local\Microsoft\WindowsApps\python.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0    at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\jeffb\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Failed to parse interpreter information for 'C:\Users\jeffb\AppData\Local\Microsoft\WindowsApps\python3.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0   at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\jeffb\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Error Python Extension: 2019-08-15 07:03:16: Failed to parse interpreter information for 'C:\Users\jeffb\AppData\Local\Microsoft\WindowsApps\python.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0    at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\jeffb\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:38
_doInvokeHandler @ rpcProtocol.ts:394
_invokeHandler @ rpcProtocol.ts:379
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
_protocol.onMessage.e @ rpcProtocol.ts:101
fire @ event.ts:572
a @ ipc.net.ts:421
e @ ipc.net.ts:428
fire @ event.ts:572
_receiveMessage @ ipc.net.ts:715
S._socketDisposables.push._socketReader.onMessage.e @ ipc.net.ts:578
fire @ event.ts:572
acceptChunk @ ipc.net.ts:236
_register._socket.onData.e @ ipc.net.ts:197
t @ ipc.net.ts:28
emit @ events.js:182
addChunk @ _stream_readable.js:283
readableAddChunk @ _stream_readable.js:264
Readable.push @ _stream_readable.js:219
onStreamRead @ internal/stream_base_commons.js:94
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: setGlobalInterpreter, Class name = f, completed in 47ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: setGlobalInterpreter, Class name = f, completed in 44ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: setGlobalInterpreter, Class name = f, completed in 44ms, Arg 1: {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: Executing next rule from currentPath
3console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:16: autoSelectInterpreter, Class name = f, completed in 54ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: setGlobalInterpreter, Class name = f, completed in 89ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.4 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: autoSelectInterpreter, Class name = f, completed in 104ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Get language server folder name, Class name = f, completed in 72ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: "languageServer.0.3.47"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Activation Commands received d:/Repos/NACA_Wing_Creator/env/Scripts/activate.bat for shell cmd
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Has Custom Env Vars
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Activating Environment to capture Environment variables, d:/Repos/NACA_Wing_Creator/env/Scripts/activate.bat && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python C:/Users/jeffb/.vscode/extensions/ms-python.python-2019.8.30787/pythonFiles/printEnvVariables.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: parseEnvironmentOutput, Class name = b, completed in 0ms
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: getActivatedEnvironmentVariables, Class name = b, completed in 229ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Get language server folder name, Class name = f, completed in 4ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator\naca.py>, Return Value: "languageServer.0.3.47"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: > ~\AppData\Local\Programs\Python\Python37\Scripts\mypy --ignore-missing-imports --follow-imports=silent --show-column-numbers d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: cwd: d:\Repos\NACA_Wing_Creator
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: > ~\AppData\Local\Programs\Python\Python37\Scripts\pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:17: cwd: d:\Repos\NACA_Wing_Creator
console.ts:137 [Extension Host] [vscode-icons] v9.2.0 activated!
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Starting Language Server, Class name = d, completed in 2171ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Cached data exists getEnvironmentVariables, d:\Repos\NACA_Wing_Creator\naca.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule system is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.4 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule currentPath is {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: setGlobalInterpreter, Class name = f, completed in 19ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = cachedInterpreters, result = exit
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 21ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 22ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: [object Object]. Shell identified as undefined 
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Shell path 'C:\Program Files\PowerShell\6\pwsh.exe'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Shell path identified as shell 'powershellCore'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Terminal shell path 'C:\Program Files\PowerShell\6\pwsh.exe' identified as shell 'powershellCore'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: [object Object]. Shell identified as powershellCore 
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Shell identified as 'powershellCore'
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 5ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
4console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters, Class name = g, completed in 2ms, Arg 1: <Uri:d:\Repos\NACA_Wing_Creator>, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 4ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Register Interpreter Watcher, Class name = p, completed in 1ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 5ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 5ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 2ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: undefined, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters, Class name = g, completed in 6ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule system is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.4 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule currentPath is {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","type":"Unknown"},{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 24ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.4 64-bit"}
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Current value for rule workspaceEnvs is {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: setGlobalInterpreter, Class name = f, completed in 54ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: setGlobalInterpreter, Class name = f, completed in 47ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: setGlobalInterpreter, Class name = f, completed in 47ms, Arg 1: {"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 70ms, Arg 1: undefined, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 71ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Interpreters returned by WorkspaceVirtualEnvService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Interpreters returned by WorkspaceVirtualEnvService are [{"architecture":3,"path":"d:\\Repos\\NACA_Wing_Creator\\env\\Scripts\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"d:\\Repos\\NACA_Wing_Creator\\env","fileHash":"575323233548bc1b783f50dff49dcde9d51afdba70731ce50295927cc17b821cb97bab7c0bed0a6e3cb6611d30e7ab5e59d3b0c862bebed9285430986c570536","envName":"env","type":"Venv"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: setGlobalInterpreter, Class name = f, completed in 142ms, Arg 1: {"architecture":3,"path":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37\\python.exe","version":{"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\jeffb\\AppData\\Local\\Programs\\Python\\Python37","fileHash":"23aaff94900ceed2d0418394a5d9a78d12fd6e6e9a10e9d06799e19d94d4ee25677aea407555ac55cf5c69cf59a929f1724563a02e00e20720037e060799765c","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.4 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-15 07:03:19: autoSelectInterpreter, Class name = f, completed in 174ms, Arg 1: undefined, Return Value: undefined
kimadeline commented 5 years ago

Hi @JeffHanna πŸ‘‹ thank you for reaching out! However, I can't reproduce your issue (VS Code 1.37.1, extension 2019.8.30787) with this script:

import numpy as np
import matplotlib.pyplot as plt

plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()

test = np.arange(15).reshape(3, 5)

Thanks!

JeffHanna commented 5 years ago

Hi Kim,

Yes, upon further investigation I believe the issue is with Pylint itself. Unless Pylint is installed in the virtual environment it generates false positives about modules installed in those virtual environments. I'm going to try this (https://pypi.org/project/pylint-venv/) to see if it solves my problem. Thank you for your help and investigation. I'm sorry for wasting your time.

On Thu, Aug 15, 2019 at 3:19 PM Kim-Adeline Miguel notifications@github.com wrote:

Hi @JeffHanna https://github.com/JeffHanna πŸ‘‹ thank you for reaching out! However, I can't reproduce your issue (VS Code 1.37.1, extension 2019.8.30787) with this script:

import numpy as np import matplotlib.pyplot as plt

plt.plot([1, 2, 3, 4])

plt.ylabel('some numbers')

plt.show()

test = np.arange(15).reshape(3, 5)

  • Do you have some sample code (a script or a repo) I could use?
  • Does the issue also occur if you run pylint in a standalone terminal window (path/to/python/Scripts/pylint path/to/script.py)?

Thanks!

β€” You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/microsoft/vscode-python/issues/6976?email_source=notifications&email_token=AABE3V7PCPTTKHCUDW75A7TQEW25VA5CNFSM4IL5THM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD4M4K7A#issuecomment-521782652, or mute the thread https://github.com/notifications/unsubscribe-auth/AABE3V2M72GMCNNEYKDDRR3QEW25VANCNFSM4IL5THMQ .

kimadeline commented 5 years ago

No problem! Feel free to reopen this issue if it doesn't work and we'll be happy to help you!