Skip to content

Improve logging for cases where test adapter fails with file (python) not found #10233

Closed
@SonOfDiablo

Description

@SonOfDiablo

Environment data

  • VS Code version: 1.42.1 (user setup)
  • Extension version (available under the Extensions sidebar): 2020.2.63990
  • OS and version: Windows_NT x64 10.0.18363
  • Python version: 3.8.0
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Relevant/affected Python packages and their versions: pytest 5.3.5
  • Jedi or Language Server? (i.e. what is "python.jediEnabled" set to; more info How to update the language server to the latest stable version #3977): Language Server
  • Value of the python.languageServer setting: Microsoft

Expected behaviour

Tests would be discovered and the Tests tab would be populated.

Actual behaviour

An error is thrown by pytest:

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Path\To\Project -s --cache-clear Tests
Test Discovery failed: 
Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT

Steps to reproduce:

  1. Open a Python project with a folder containing tests
  2. Run Discover Tests
My project structure
ProjectName/
┣━ .pytest_cache/
┃  ┣━ v/
┃  ┃  ┗━ cache/
┃  ┃  ┃  ┣━ nodeids
┃  ┃  ┃  ┗━ stepwise
┃  ┣━ .gitignore
┃  ┣━ CACHEDIR.TAG
┃  ┗━ README.md
┣━ .vscode/
┃  ┗━ settings.json
┣━ Tests/
┃  ┣━ Support/
┃  ┃  ┣━ Schemas/
┃  ┃  ┃  ┣━ test-data1.json
┃  ┃  ┃  ┣━ test-data2.json
┃  ┃  ┃  ┣━ test-data3.json
┃  ┃  ┃  ┗━ test-data4.json
┃  ┃  ┣━ __pycache__/
┃  ┃  ┃  ┗━ assertions.cpython-38.pyc
┃  ┃  ┗━ assertions.py
┃  ┣━ __pycache__/
┃  ┃  ┣━ test_Collections.cpython-38-pytest-5.3.5.pyc
┃  ┃  ┗━ __init__.cpython-38.pyc
┃  ┣━ pytest.ini
┃  ┣━ test_Collections.py
┃  ┗━ __init__.py
┣━ __pycache__/
┃  ┗━ ProjectName.cpython-38.pyc
┗━ ProjectName.py

The test discovery worked fine yesterday, and works just fine when manually running

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests

outside of VS Code.

Logs

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

User belongs to experiment group 'ShowPlayIcon - start'
User belongs to experiment group 'ShowExtensionSurveyPrompt - control'
User belongs to experiment group 'DebugAdapterFactory - experiment'
User belongs to experiment group 'PtvsdWheels37 - experiment'
User belongs to experiment group 'Reload - control'
User belongs to experiment group 'UseTerminalToGetActivatedEnvVars - control'
User belongs to experiment group 'WebHostNotebook - 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)"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
Starting Microsoft Python language server.
> ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> conda --version
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
##########Linting Output - pylint##########

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

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

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)

abstractExtensionService.ts:400 [ms-vscode.powershell]: Command `workbench.action.debug.start` appears multiple times in the `commands` section.
TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope source.sql.
Old grammar file: file:///d%3A/Programs/Microsoft%20VS%20Code/resources/app/extensions/sql/syntaxes/sql.tmLanguage.json.
New grammar file: file:///c%3A/Users/USERNAME/.vscode/extensions/mtxr.sqltools-0.21.6/language/sql.tmLanguage.json
register @ TMScopeRegistry.ts:45
7abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
7abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
extensionHost.ts:211 Extension Host
extensionHost.ts:212 Debugger attached.
extensionHost.ts:211 Extension Host
extensionHost.ts:212 Debugger attached.
console.ts:137 [Extension Host] filesize is active
14[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:34: Display locator refreshing progress, Class name = p, completed in 4ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 22ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 1ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 26ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 182ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 67ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 61ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 60ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 56ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Register Interpreter Watcher, Class name = p, completed in 51ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 55ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 49ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 65ms, Arg 1: <Uri:tasks>, Return Value: <Return value cannot be serialized for logging>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: getActivatedEnvironmentVariables, Class name = S, completed in 229ms, Arg 1: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 17ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 23ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Register Interpreter Watcher, Class name = p, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 32ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 30ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 13ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: <Uri:tasks>, Return Value: <Return value cannot be serialized for logging>
2console.ts:137 [Extension Host] (node:7828) [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:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 22ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 28ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
3console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 19ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 19ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 2549ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 45ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 34ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, , Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6444ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6435ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6433ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6432ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6424ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6422ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8759ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8755ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8776ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8777ms, Arg 1: <Uri:tasks>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8773ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\Windows\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\LiveKernelReports'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ModemLogs'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\Windows\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\Prefetch'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ServiceState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagerr.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagwrn.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\LiveKernelReports'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ModemLogs'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\Prefetch'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ServiceState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagerr.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagwrn.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\Windows\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\Configuration'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\DriverState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\MsDtc'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\SleepStudy'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\WDI'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\config'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\ias'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\networklist'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\sru'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\Configuration'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\DriverState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\MsDtc'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\SleepStudy'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\WDI'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\config'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\ias'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\networklist'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\sru'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, extension-output-#4
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: setGlobalInterpreter, Class name = f, completed in 7830ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: setGlobalInterpreter, Class name = f, completed in 7827ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10414ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10405ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10411ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10407ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: Detection of Python Interpreter for Command py and args -3.6 failed as file Python 3.6 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10438ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10435ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10447ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10442ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: getActivatedEnvironmentVariables, Class name = S, completed in 47ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: getActivatedEnvironmentVariables, Class name = S, completed in 22ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
log.ts:191  WARN UNRESPONSIVE extension host, 'Gruntfuggly.todo-tree' took 23% of 3642.874ms, saved PROFILE here: 'C:\Users\USERNAME\AppData\Local\Temp\exthost-08dfde.cpuprofile' (20) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: Detection of Python Interpreter for Command python3 and args  failed as file  does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\Spotify.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\Spotify.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
4console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:46: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:47: Detection of Python Interpreter for Command py and args -3.7 failed as file Python 3.7 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:47: Detection of Python Interpreter for Command py and args -2 failed as file Python 2 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
6console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 1495ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by CurrentPathService are of count 3
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 81ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, tasks
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: getActivatedEnvironmentVariables, Class name = S, completed in 8ms, Arg 1: <Uri:tasks>, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, tasks
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 24ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
2console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: getActivatedEnvironmentVariables, Class name = S, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Starting Language Server, Class name = f, completed in 1957ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: cwd: ""
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: cwd: ""
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: [object Object]. Shell identified as undefined 
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell path identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: [object Object]. Shell identified as powershell 
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell identified as 'powershell'
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists KeyPrefix=Cache_Method_Output_b.getCondaInfo-Args=
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters, Class name = m, completed in 24ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to parse discovered Test Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT    at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19)    at onErrorNT (internal/child_process.js:456:16)    at processTicksAndRejections (internal/process/task_queues.js:84:9)    at runNextTicks (internal/process/task_queues.js:59:3)    at processTimers (internal/timers.js:472:9) {  errno: 'ENOENT',  code: 'ENOENT',  syscall: 'spawn C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  spawnargs: [    'c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\testing_tools\\run_adapter.py',    'discover',    'pytest',    '--',    '--rootdir',    'd:\\Documents\\Scripts\\python\\ProjectName',    '-s',    '--cache-clear',    'Tests'  ]}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: getActivatedEnvironmentVariables, Class name = S, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Socket.<anonymous> (internal/child_process.js:430:11)    at Socket.emit (events.js:200:13)    at Pipe.<anonymous> (net.js:586:12) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Hide locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: All locators have completed locating, Class name = p, completed in 1ms, , Return Value: undefined
notificationsAlerts.ts:40 Test discovery error, please check the configuration settings for the tests.
onDidNotificationChange @ notificationsAlerts.ts:40
(anonymous) @ notificationsAlerts.ts:26
fire @ event.ts:582
addNotification @ notifications.ts:171
notify @ notificationService.ts:101
(anonymous) @ mainThreadMessageService.ts:83
_showMessage @ mainThreadMessageService.ts:44
$showMessage @ mainThreadMessageService.ts:38
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:52: Python Extension: displayDiscoverStatus TypeError: Cannot read property 'uri' of undefined    at rootDirectory (c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\src\client\testing\common\managers\baseTestManager.ts:185:93)
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] [vscode-icons] v10.0.0 activated!
log.ts:191  WARN UNRESPONSIVE extension host, 'acarreiro.calculate' took 31% of 4797.868ms, saved PROFILE here: 'C:\Users\USERNAME\AppData\Local\Temp\exthost-87361d.cpuprofile' (22) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
console.ts:137 [Extension Host] No editors associated with document: d:\Documents\Scripts\python\ProjectName\ProjectName.py
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: > ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: > ~\AppData\Local\Programs\Python\Python38\python.exe -m 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:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:20: Cached data exists getEnvironmentVariables, extension-output-#4

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-testingbugIssue identified by VS Code Team member as probable bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions