Outline and breadcrumbs are not initially available for unit test files
See original GitHub issueEnvironment data
- VS Code version: 1.40.1
- Extension version (available under the Extensions sidebar): 2019.11.50794
- OS and version: Windows 10
- Python version (& distribution if applicable, e.g. Anaconda): 3.8.0 32-bit
- Type of virtual environment used (N/A | venv | virtualenv | conda | …): N/A
- Relevant/affected Python packages and their versions: N/A
- Jedi or Language Server? (i.e. what is
"python.jediEnabled"
set to; more info #3977): Jedi
Expected behaviour
Outline symbols and breadcrumbs should be available for all python files regardless of file name and unit test setup.
Actual behaviour
Outline symbols and breadcrumbs are not initially available for python files whose names match the file name item of the “python.testing.unittestArgs” setting (sometimes only if that item is changed from the default “test.py” to “*test.py”). The problem appears whenever VS Code is restarted, and goes away for each file that is modified (e.g. by pressing the space key anywhere in the file).
Steps to reproduce:
- Set “python.testing.unittestEnabled” to true, and change the last item of the default “python.testing.unittestArgs” setting from “test.py” to “*test.py” (this change is not always necessary to provoke the problem).
- Create a file named atest.py with the following content:
#!/usr/bin/env python3
import unittest
class Test1(unittest.TestCase):
def test1(self):
self.assertEqual(5, 5)
if __name__ == '__main__':
unittest.main()
- Restart VS Code. At this point there are no breadcrumbs for the file, and the outline view says “No symbols found in document ‘atest.py’”.
- Type a space into the editor. Now the breadcrumbs and outline symbols appear correctly.
Logs
Output for Python
in the Output
panel (View
→Output
, change the drop-down the upper-right of the Output
panel to Python
)
> 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)"
> python -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Microsoft\WindowsApps\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
Starting Jedi Python language engine.
> D:\Python\Python38-32\python.exe -c "
import unittest
loader = unittest.TestLoader()
suites = loader.discover(".", pattern="*test.py")
print("start") #Don't remove this line
for suite in suites._tests:
for cls in suite._tests:
try:
for m in cls._tests:
print(m.id())
except:
pass"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "
import unittest
loader = unittest.TestLoader()
suites = loader.discover(".", pattern="*test.py")
print("start") #Don't remove this line
for suite in suites._tests:
for cls in suite._tests:
try:
for m in cls._tests:
print(m.id())
except:
pass"
cwd: d:\Documents\Test
> conda --version
> D:\Python\Python24\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> D:\Python\Python24\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> D:\Python\Python25\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> D:\Python\Python25\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
> /usr/bin/env python3 -c "import sys;print(sys.executable)"
> D:\Python\Python38-32\python.exe -c "import sys;print(sys.prefix)"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "import sys;print(sys.prefix)"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "import sys;print(sys.executable)"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "import sys;print(sys.executable)"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -m site --user-site
cwd: d:\Documents\Test
> D:\Python\Python38-32\python.exe -m site --user-site
cwd: d:\Documents\Test
> /usr/bin/env python3 -c "import sys;print(sys.executable)"
> D:\Python\Python38-32\python.exe completion.py
cwd: c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles
> D:\Python\Python38-32\python.exe completion.py
cwd: c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles
> D:\Python\Python38-32\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\Test\atest.py
cwd: d:\Documents\Test
> D:\Python\Python38-32\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\Test\atest.py
cwd: d:\Documents\Test
##########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
)
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Notify locators are locating, Class name = p, completed in 3ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Detected refreshing of Interpreters, Class name = p, completed in 4ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Checking whether locactors have completed locating, Class name = p, completed in 1ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:49: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 14ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 12ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Register Interpreter Watcher, Class name = p, completed in 11ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 12ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 9ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Build the workspace interpreter watcher, Class name = h, completed in 13ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: [TypeError: Cannot convert object to primitive value at Array.join (<anonymous>) at Array.toString (<anonymous>) at c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:1:12808 at Array.forEach (<anonymous>) at Object.l [as sendTelemetryEvent] (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:1:12730) at S.sendSettingsTelemetry (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:631341) at Timeout._onTimeout (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:1:83209) at listOnTimeout (internal/timers.js:531:17) at processTimers (internal/timers.js:475:7)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, , Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detection of Python Interpreter for Command python3.7 and args failed
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detection of Python Interpreter for Command python3.6 and args failed
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detection of Python Interpreter for Command python2 and args failed
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters, Class name = m, completed in 208ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > conda info --json
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > ~\AppData\Local\Microsoft\WindowsApps\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > ~\AppData\Local\Microsoft\WindowsApps\python3.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Detection of Python Interpreter for Command python3 and args failed as file does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CurrentPathService are of count 6
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by CurrentPathService are [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 167ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 166ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule system is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule currentPath is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule windowsRegistry is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from cachedInterpreters, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 3ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = cachedInterpreters, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 5ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 174ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 175ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 8ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Build the workspace interpreter watcher, Class name = h, completed in 9ms, Arg 1: <Uri:d:\Documents\Test\atest.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, d:\Documents\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from windowsRegistry, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from currentPath, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters, Class name = m, completed in 3ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule system is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule currentPath is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule windowsRegistry is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from cachedInterpreters, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Failed to check if file needs to be fixed [Error: ENOENT: no such file or directory, open 'd:\Documents\Test\.vscode\settings.json'] { errno: -4058, code: 'ENOENT', syscall: 'open', path: 'd:\\Documents\\Test\\.vscode\\settings.json'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from system, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Failed to parse interpreter information for 'C:\Users\User\AppData\Local\Microsoft\WindowsApps\python3.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0 at JSON.parse (<anonymous>) at t.WindowsStorePythonProcess.getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:9:39934) at async getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1105031) at async getInterpreterDetails (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1136642) at async Promise.all (index 3)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Failed to parse interpreter information for 'C:\Users\User\AppData\Local\Microsoft\WindowsApps\python.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0 at JSON.parse (<anonymous>) at t.WindowsStorePythonProcess.getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:9:39934) at async getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1105031) at async getInterpreterDetails (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1136642) at async Promise.all (index 2)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 88ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 87ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 84ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 105ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 106ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 105ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: getActivatedEnvironmentVariables, Class name = b, completed in 104ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: undefined, Arg 3: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > D:\Python\Python38-32\python.exe -c "import unittestloader = unittest.TestLoader()suites = loader.discover(".", pattern="*test.py")print("start") #Don't remove this linefor suite in suites._tests: for cls in suite._tests: try: for m in cls._tests: print(m.id()) except: pass"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > D:\Python\Python38-32\python.exe -c "import unittestloader = unittest.TestLoader()suites = loader.discover(".", pattern="*test.py")print("start") #Don't remove this linefor suite in suites._tests: for cls in suite._tests: try: for m in cls._tests: print(m.id()) except: pass"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by KnownPathsService are of count 2
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by KnownPathsService are [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 96ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 123ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 17ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 124ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 125ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 24ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule system is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule currentPath is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule windowsRegistry is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from cachedInterpreters, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 3ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = cachedInterpreters, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 10ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 36ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 37ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 3ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: [object Object]. Shell identified as undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Shell path 'C:\WINDOWS\Sysnative\cmd.exe'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Shell path identified as shell 'commandPrompt'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Shell path from user settings 'C:\WINDOWS\Sysnative\cmd.exe'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: [object Object]. Shell identified as commandPrompt
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Shell identified as 'commandPrompt'
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
5console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists KeyPrefix=Cache_Method_Output_b.getCondaInfo-Args=
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters, Class name = m, completed in 3ms, Arg 1: <Uri:d:\Documents\Test>, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from windowsRegistry, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from currentPath, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Register Interpreter Watcher, Class name = p, completed in 1ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: undefined, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Build the workspace interpreter watcher, Class name = h, completed in 2ms, Arg 1: undefined, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters, Class name = m, completed in 3ms, Arg 1: undefined, Return Value: [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule system is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule currentPath is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule windowsRegistry is {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from cachedInterpreters, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from system, {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, d:\Documents\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > /usr/bin/env python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > D:\Python\Python24\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: > D:\Python\Python25\python.exe c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 38ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 38ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 33ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 49ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 50ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 51ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: setGlobalInterpreter, Class name = f, completed in 16ms, Arg 1: {"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 32-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 54ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 63ms, Arg 1: <Uri:d:\Documents\Test>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: autoSelectInterpreter, Class name = f, completed in 65ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Failed to parse interpreter information for 'D:\Python\Python24\python.exe' with JSON Traceback (most recent call last):
File "c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py", line 4, in ?
import json
ImportError: No module named json [SyntaxError: Unexpected token T in JSON at position 0 at JSON.parse (<anonymous>) at f.getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:9:39934) at async getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1105031) at async c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1145456 at async Promise.all (index 0) at async Promise.all (index 0) at async S.getInterpretersFromRegistry (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1144151)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-11-24 16:57:50: Failed to parse interpreter information for 'D:\Python\Python25\python.exe' with JSON Traceback (most recent call last):
File "c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\interpreterInfo.py", line 4, in <module>
import json
ImportError: No module named json [SyntaxError: Unexpected token T in JSON at position 0 at JSON.parse (<anonymous>) at f.getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:9:39934) at async getInterpreterInformation (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1105031) at async c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1145456 at async Promise.all (index 1) at async Promise.all (index 0) at async S.getInterpretersFromRegistry (c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\out\client\extension.js:75:1144151)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WindowsRegistryService are of count 7
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Interpreters returned by WindowsRegistryService are [{"architecture":2,"path":"D:\\Python\\Python26\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.6.6-final","major":2,"minor":6,"patch":6,"prerelease":["final"],"build":[],"version":"2.6.6-final"},"sysPrefix":"D:\\Python\\Python26","fileHash":"906ac029618b0e7fafee1e11964b34cf446d8620482ceb0bbb5cc62a6fc2fca4a9f76307db6c0d85a2b2ebdf1a55dd761eff9c37a3668dc973733c5861b77cde","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python34\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.4.4-final","major":3,"minor":4,"patch":4,"prerelease":["final"],"build":[],"version":"3.4.4-final"},"sysPrefix":"D:\\Python\\Python34","fileHash":"2e9d1bc5d4173ec742f9b7363edff235b33a16b6fb027d24b68d066ce2043a1170f7410a9a7bd9dd4da4a18dd008415985996db607c5b0e0f201f23bbae7144a","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python35-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.4-final","major":3,"minor":5,"patch":4,"prerelease":["final"],"build":[],"version":"3.5.4-final"},"sysPrefix":"D:\\Python\\Python35-32","fileHash":"5747191dd20f16265bac01aa71781792cd30f480ccdbb6b62af862154a1fb06970b46ac86fb231a019a8c6bbc8191de6099687d7805783c981a8005dfb730187","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python36-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.8-final","major":3,"minor":6,"patch":8,"prerelease":["final"],"build":[],"version":"3.6.8-final"},"sysPrefix":"D:\\Python\\Python36-32","fileHash":"73c217dc3e2995dcbca31c6f0915db0243bf8de91dec9edcd88bfe1e5450c306e70db9469cab523a4bc460ecf8fca213737d7403987935aece31b5fbe2da7a44","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python37-32\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"D:\\Python\\Python37-32","fileHash":"8b536dabb76f536dd0cf207040e247ca12eac4489aa6557060f4e1024805abf1048b61d5992d1404dda8909068a2428533ceb3a818ca8ae4db91b92e94311900","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python\\Python38-32\\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":"D:\\Python\\Python38-32","fileHash":"21fe2e5011096361164b187ef8d9cb94e34adac76055e66a84479ac7f212c4c919f37bfb87ec1992cd8284d28e43ca1377bb111ea12256bbbb34150ad7be9481","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":2,"path":"D:\\Python27\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17-final","major":2,"minor":7,"patch":17,"prerelease":["final"],"build":[],"version":"2.7.17-final"},"sysPrefix":"D:\\Python27","fileHash":"e9c475adcbf2f1f704d1cf91f359dabf38d5a7f6207c4171071a36fda0c324e5a58cba2229a5340067b59343056f2afd45d9d88ffcd85f8faa7bea31645e6d4f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Checking whether locactors have completed locating, Class name = p, completed in 1ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:50: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: Cached data exists getEnvironmentVariables, d:\Documents\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > /usr/bin/env python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: Cached data exists getEnvironmentVariables, d:\Documents\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\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\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\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\Test\atest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
5console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: Cached data exists getEnvironmentVariables, d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: Cached data exists getEnvironmentVariables, d:\Documents\Test
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe completion.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: > D:\Python\Python38-32\python.exe completion.py
console.ts:137 [Extension Host] Info Python Extension: 2019-11-24 16:57:51: cwd: c:\Users\User\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles
Issue Analytics
- State:
- Created 4 years ago
- Comments:11
@karrtikr, sorry, I missed your question (it seems you added the question as an edit to your comment, and I only saw the original comment). Yes, I’m still having the problem (VS Code version is now 1.41.1), so please reopen.
Closing as we no longer use codelens for testing.