Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The auto-import logic is not picking the shortest import path for symbols #774

Closed
tiangolo opened this issue Dec 26, 2020 · 16 comments
Closed
Labels
bug Something isn't working fixed in next version (main) A fix has been implemented and will appear in an upcoming version

Comments

@tiangolo
Copy link

Environment data

  • Language Server version: Pylance language server 2020.12.2 (pyright 6feebac9)
  • OS and version: Ubuntu 18.04, VS Code 1.51.1
  • Python version (& distribution if applicable, e.g. Anaconda): 3.7 in a venv with a fresh FastAPI installation.

Expected behaviour

I would expect the auto-import feature to pick the shortest import path for a symbol, or at least offer it as one of the alternatives, rather than only the source file where that symbol is defined.

For example, take this snippet:

from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def main(name: str = Query()):
    pass

After triggering auto-completion for Query, I would want it to suggest to import it as:

from fastapi import Query

Or at least include that in the possible locations to import.

Actual behaviour

The auto-import feature is only suggesting the import path that points to the source file where the symbol is created.

So it suggests importing:

from fastapi.param_functions import Query

Selection_215

Logs

I think logs are not relevant here, but let me know.

Code Snippet / Additional information

Code snippet and screenshot provided above in context.

I recently released FastAPI 0.63.0 with support for mypy --strict, including re-exports in the source files for the symbols I want re-exported.

This is a continuation of this comment: #222 (comment) in a previous issue.

@jakebailey
Copy link
Member

Any chance you could try out the insiders build which has indexing enabled to see if that changes the import that's presented? #623

@tiangolo
Copy link
Author

Thanks for the response @jakebailey !

I just enabled insiders, it was downloaded and I was asked to reload the editor, which I did.

Now the completion system doesn't suggest anything for Query, not even from fastapi.param_functions import Query.

I get suggestions for other symbols with a name that starts with Query, but not the one I'm interested in.

With the same snippet, I get:

Selection_219

@jakebailey
Copy link
Member

If you enable trace logging, do you see the indexer running and completing by the time you perform this completion? Curious that it doesn't show. @heejaechang can likely take a look when he's back from his break.

@tiangolo
Copy link
Author

I think I found how to do it and tried it, it seems the indexing is running and completing before I trigger completion.

Here's the full log for the Python Language Server output:

[Info  - 3:55:31 PM] Pylance language server 2021.1.2-pre.1 (pyright 6a970b45) starting
[Info  - 3:55:31 PM] Server root directory: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist
[Info  - 3:55:31 PM] No configuration file found.
[Info  - 3:55:31 PM] Setting pythonPath for service "vscodedebugfastapi": "/home/user/code/vscodedebugfastapi/env3.8/bin/python"
Search paths found for configured python interpreter:
  /home/user/anaconda3/envs/python3.8/lib/python3.8
  /home/user/anaconda3/envs/python3.8/lib/python3.8/lib-dynload
  /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages
[Error - 3:55:31 PM] stubPath /home/user/code/vscodedebugfastapi/typings is not a valid directory.
[Info  - 3:55:31 PM] Assuming Python version 3.8
[Info  - 3:55:31 PM] Assuming Python platform Linux
[Info  - 3:55:31 PM] Searching for source files
[Info  - 3:55:31 PM] Auto-excluding /home/user/code/vscodedebugfastapi/env3.8
[Info  - 3:55:31 PM] Found 1 source file
[Info  - 3:55:31 PM] Background analysis(1) root directory: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist
[Info  - 3:55:31 PM] Background analysis(1) started
Background analysis message: setConfigOptions
Background analysis message: setTrackedFiles
Background analysis message: markAllFilesDirty
Background analysis message: setFileOpened
Background analysis message: getSemanticTokens
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/main.py (21ms)
IntelliCode model /home/user/.vscode/extensions/visualstudioexptteam.vscodeintellicode-1.2.10/cache/E61945A9A512ED5E1A3EE3F1A2365B88F8FE_E4E9EADA96734F01970E616FAB2FAC19
Loading ONNX runtime...
2021-01-17 15:55:32.293269836 [I:onnxruntime:, inference_session.cc:174 ConstructorCommon] Creating and using per session threadpools since use_per_session_threads_ is true
2021-01-17 15:55:32.294655600 [I:onnxruntime:, inference_session.cc:840 Initialize] Initializing session.
2021-01-17 15:55:32.294676281 [I:onnxruntime:, inference_session.cc:865 Initialize] Adding default CPU execution provider.
2021-01-17 15:55:32.295924892 [I:onnxruntime:, reshape_fusion.cc:37 ApplyImpl] Total fused reshape node count: 0
2021-01-17 15:55:32.296556017 [I:onnxruntime:, reshape_fusion.cc:37 ApplyImpl] Total fused reshape node count: 0
2021-01-17 15:55:32.299303199 [V:onnxruntime:, inference_session.cc:679 TransformGraph] Node placements
2021-01-17 15:55:32.299324946 [V:onnxruntime:, inference_session.cc:681 TransformGraph] All nodes have been placed on [CPUExecutionProvider].
2021-01-17 15:55:32.299354689 [V:onnxruntime:, session_state.cc:71 CreateGraphInfo] SaveMLValueNameIndexMapping
2021-01-17 15:55:32.299402593 [V:onnxruntime:, session_state.cc:116 CreateGraphInfo] Done saving OrtValue mappings.
2021-01-17 15:55:32.300281415 [I:onnxruntime:, finalize_session_state.cc:173 SaveInitializedTensors] Saving initialized tensors.
2021-01-17 15:55:32.321532082 [I:onnxruntime:, finalize_session_state.cc:225 SaveInitializedTensors] Done saving initialized tensors
2021-01-17 15:55:32.325076459 [I:onnxruntime:, inference_session.cc:954 Initialize] Session successfully initialized.
Loaded ONNX runtime. Creating IntelliCode session...
Created IntelliCode session.
[BG(1)] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 4ms] (181ms)
[BG(1)] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (75ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/main.py (0ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/__init__.py [fs read 1ms] (22ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/__init__.py (1ms)
[Info  - 3:55:32 PM] Indexer background runner(2) root directory: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist
[Info  - 3:55:32 PM] Indexing(2) started
[Info  - 3:55:32 PM] No stdlib indices found at /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/bundled/indices/stdlib.json
[IDX(2)] index libraries /home/user/code/vscodedebugfastapi ...
[IDX(2)]   read stdlib indices (43ms)
[IDX(2)]   scan packages [found 485 modules over 1 exec env] (237ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/applications.py [fs read 2ms] (100ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/applications.py (7ms)
[BG(1)] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 2ms] (12ms)
[BG(1)] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (2ms)
[BG(1)] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 0ms] (4ms)
[BG(1)] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (2ms)
[IDX(2)]   index execution environment /home/user/code/vscodedebugfastapi ...
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/contextvars.pyi [fs read 0ms] (37ms)
[BG(1)] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (49ms)
[BG(1)] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (39ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/applications.py [fs read 0ms] (25ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 4ms] (149ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/applications.py (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (59ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/routing.py [fs read 0ms] (53ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/contextvars.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/contextvars.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/dataclasses.pyi [fs read 2ms] (7ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/routing.py (13ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/dataclasses.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3.7/dataclasses.pyi [found 12] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [found 7] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ast.pyi [fs read 0ms] (9ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/params.py [fs read 0ms] (8ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/params.py (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ast.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_ast.pyi [fs read 0ms] (7ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_ast.pyi (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ast.pyi (24ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ast.pyi [found 18] (2ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi (1ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/responses.py [fs read 0ms] (37ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/responses.py (11ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_events.pyi [fs read 0ms] (23ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/datastructures.py [fs read 0ms] (3ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/datastructures.py (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_events.pyi (4ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/middleware/__init__.py [fs read 1ms] (2ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/coroutines.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/coroutines.pyi (0ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/middleware/__init__.py (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi [fs read 0ms] (17ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi (9ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [fs read 0ms] (11ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi (4ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi (2ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/protocols.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/protocols.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/queues.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/queues.pyi (1ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/routing.py [fs read 1ms] (61ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi [fs read 0ms] (9ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi (2ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/subprocess.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/subprocess.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi [fs read 0ms] (6ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/routing.py (12ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi (2ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/__init__.py [fs read 0ms] (1ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/starlette/__init__.py (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/transports.pyi [fs read 0ms] (4ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/transports.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/exceptions.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/exceptions.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/runners.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/runners.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/unix_events.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/unix_events.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [found 79] (119ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_events.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_futures.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_futures.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_futures.pyi [found 1] (0ms)
[BG(1)] parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/encoders.py [fs read 0ms] (7ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_subprocess.pyi [fs read 0ms] (3ms)
[BG(1)] binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/encoders.py (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_subprocess.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_subprocess.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_tasks.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_tasks.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/base_tasks.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/compat.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/compat.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/compat.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/constants.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/constants.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/constants.pyi [found 5] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/coroutines.pyi [found 3] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi [found 14] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/exceptions.pyi [found 6] (0ms)
Background analysis message: getSemanticTokens
Background analysis message: analyze
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/format_helpers.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/format_helpers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/format_helpers.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [found 3] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/log.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/log.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/log.pyi [found 1] (0ms)
[BG(1)] analyzing: /home/user/code/vscodedebugfastapi/main.py ...
[BG(1)]   checking: /home/user/code/vscodedebugfastapi/main.py (4ms)
[BG(1)] analyzing: /home/user/code/vscodedebugfastapi/main.py (4ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/proactor_events.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/proactor_events.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/proactor_events.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/protocols.pyi [found 5] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/queues.pyi [found 5] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/runners.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/selector_events.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/selector_events.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/selector_events.pyi [found 1] (0ms)
Background analysis message: resumeAnalysis
[BG(1)] indexing: /home/user/code/vscodedebugfastapi/main.py [found 2] (1ms)
Indexing Done: /home/user/code/vscodedebugfastapi/main.py
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/sslproto.pyi [fs read 0ms] (14ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/sslproto.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/sslproto.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/staggered.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/staggered.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/staggered.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi [found 8] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/subprocess.pyi [found 7] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi [found 15] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/threads.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/threads.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/threads.pyi [found 0] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/transports.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/trsock.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/trsock.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/trsock.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/unix_events.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_events.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_events.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_events.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_utils.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_utils.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/windows_utils.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/atexit.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/atexit.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/atexit.pyi [found 2] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [found 145] (2ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi (6ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/compileall.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/compileall.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/compileall.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/__init__.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/_base.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/_base.pyi (4ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/process.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/process.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/thread.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/thread.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/__init__.pyi [found 13] (13ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/process.pyi [found 3] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/concurrent/futures/thread.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi (5ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi [found 22] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/copyreg.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/copyreg.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/copyreg.pyi [found 6] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/__init__.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/dumb.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/dumb.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/dumb.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/gnu.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/gnu.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/gnu.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/ndbm.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/ndbm.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/dbm/ndbm.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/archive_util.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/archive_util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/archive_util.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/bcppcompiler.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/bcppcompiler.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/bcppcompiler.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/ccompiler.pyi [fs read 0ms] (11ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/ccompiler.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/ccompiler.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cmd.pyi [fs read 1ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cmd.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cmd.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_dumb.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_dumb.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_dumb.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_msi.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_msi.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_msi.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_packager.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_packager.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_packager.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_rpm.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_rpm.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_rpm.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_wininst.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_wininst.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/bdist_wininst.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_clib.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_clib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_clib.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_ext.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_ext.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_ext.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_py.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_py.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_py.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_scripts.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_scripts.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/build_scripts.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/check.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/check.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/check.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/clean.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/clean.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/clean.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/config.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/config.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/config.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_data.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_data.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_data.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_egg_info.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_egg_info.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_egg_info.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_headers.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_headers.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_headers.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_lib.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_lib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_lib.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_scripts.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_scripts.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/install_scripts.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/register.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/register.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/register.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/sdist.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/sdist.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/sdist.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/upload.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/upload.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/command/upload.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/config.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/config.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/config.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/core.pyi [fs read 1ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/core.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/core.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cygwinccompiler.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cygwinccompiler.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/cygwinccompiler.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/debug.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/debug.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/debug.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dep_util.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dep_util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dep_util.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dir_util.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dir_util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dir_util.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dist.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dist.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/dist.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/errors.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/errors.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/errors.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/extension.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/extension.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/extension.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/fancy_getopt.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/fancy_getopt.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/fancy_getopt.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/file_util.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/file_util.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/file_util.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/filelist.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/filelist.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/filelist.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/log.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/log.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/log.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/msvccompiler.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/msvccompiler.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/msvccompiler.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/spawn.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/spawn.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/spawn.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/sysconfig.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/sysconfig.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/sysconfig.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/text_file.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/text_file.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/text_file.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/unixccompiler.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/unixccompiler.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/unixccompiler.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/util.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/util.pyi [found 10] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/version.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/version.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/distutils/version.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/__init__.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/charset.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/charset.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/charset.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/contentmanager.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/contentmanager.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/contentmanager.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/encoders.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/encoders.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/encoders.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/errors.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/errors.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/errors.pyi [found 16] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/feedparser.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/feedparser.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/feedparser.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/generator.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/generator.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/generator.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/header.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/header.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/header.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/headerregistry.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/headerregistry.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/headerregistry.pyi [found 17] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/iterators.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/iterators.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/iterators.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/message.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/message.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/message.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/application.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/application.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/application.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/audio.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/audio.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/audio.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/base.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/base.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/base.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/image.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/image.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/image.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/message.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/message.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/message.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/multipart.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/multipart.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/multipart.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/nonmultipart.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/nonmultipart.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/nonmultipart.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/text.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/text.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/mime/text.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/parser.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/parser.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/parser.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/policy.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/policy.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/policy.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/utils.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/utils.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/email/utils.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/__init__.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/utf_8.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/utf_8.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/encodings/utf_8.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/faulthandler.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/faulthandler.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/faulthandler.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fcntl.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fcntl.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fcntl.pyi [found 76] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fnmatch.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fnmatch.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/fnmatch.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/functools.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/functools.pyi (4ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/functools.pyi [found 13] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gc.pyi [found 24] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getopt.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getopt.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getopt.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getpass.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getpass.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/getpass.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gettext.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gettext.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gettext.pyi [found 21] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/glob.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/glob.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/glob.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gzip.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gzip.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/gzip.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/hashlib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/hashlib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/hashlib.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/heapq.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/heapq.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/heapq.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/__init__.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/entities.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/entities.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/entities.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/parser.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/parser.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/html/parser.pyi [found 1] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/__init__.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/client.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/client.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/client.pyi [found 76] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookiejar.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookiejar.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookiejar.pyi [found 8] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookies.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookies.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/cookies.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/server.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/server.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/http/server.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/imp.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/imp.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/imp.pyi [found 25] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/__init__.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/abc.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/abc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/abc.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/machinery.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/machinery.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/machinery.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/metadata.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/metadata.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/metadata.pyi [found 16] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/resources.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/resources.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/resources.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/util.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/util.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/importlib/util.pyi [found 13] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/inspect.pyi [fs read 0ms] (7ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/inspect.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/inspect.pyi [found 94] (4ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi [found 21] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ipaddress.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ipaddress.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ipaddress.pyi [found 18] (2ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/itertools.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/itertools.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/itertools.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/decoder.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/decoder.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/encoder.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/encoder.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/__init__.pyi [found 7] (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/decoder.pyi [found 2] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/encoder.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/tool.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/tool.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/json/tool.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/lzma.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/lzma.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/lzma.pyi [found 36] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/macurl2path.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/macurl2path.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/macurl2path.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/__init__.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/context.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/context.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/process.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/process.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/queues.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/queues.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/spawn.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/spawn.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/__init__.pyi [found 34] (5ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/connection.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/connection.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/connection.pyi [found 7] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/context.pyi [found 16] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/__init__.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/__init__.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/connection.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/connection.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/dummy/connection.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/managers.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/managers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/managers.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/pool.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/pool.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/pool.pyi [found 10] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/process.pyi [found 4] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/queues.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/shared_memory.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/shared_memory.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/shared_memory.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/sharedctypes.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/sharedctypes.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/sharedctypes.pyi [found 2] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/spawn.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/synchronize.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/synchronize.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/multiprocessing/synchronize.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nntplib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nntplib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nntplib.pyi [found 13] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ntpath.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ntpath.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/ntpath.pyi [found 37] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nturl2path.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nturl2path.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/nturl2path.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi [fs read 1ms] (7ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi (7ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi [found 329] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi [found 37] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pathlib.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pathlib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pathlib.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pipes.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pipes.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/pipes.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/platform.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/platform.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/platform.pyi [found 25] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posix.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posix.pyi (4ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posix.pyi [found 111] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posixpath.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posixpath.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/posixpath.pyi [found 37] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/queue.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/queue.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/queue.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/random.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/random.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/random.pyi [found 24] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [found 31] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/reprlib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/reprlib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/reprlib.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/resource.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/resource.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/resource.pyi [found 26] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/runpy.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/runpy.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/runpy.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/secrets.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/secrets.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/secrets.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/selectors.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/selectors.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/selectors.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shelve.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shelve.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shelve.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shlex.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shlex.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/shlex.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/signal.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/signal.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/signal.pyi [found 69] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/smtplib.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/smtplib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/smtplib.pyi [found 21] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/socketserver.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/socketserver.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/socketserver.pyi [found 16] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/spwd.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/spwd.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/spwd.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_constants.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_constants.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_constants.pyi [found 89] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_parse.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_parse.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sre_parse.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/stat.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/stat.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/stat.pyi [found 73] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/statistics.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/statistics.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/statistics.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/string.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/string.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/string.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/subprocess.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/subprocess.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/subprocess.pyi [found 15] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/symbol.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/symbol.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/symbol.pyi [found 87] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sys.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sys.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/sys.pyi [found 78] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tempfile.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tempfile.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tempfile.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/textwrap.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/textwrap.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/textwrap.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/__init__.pyi [fs read 0ms] (39ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/constants.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/constants.pyi (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/__init__.pyi (24ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/__init__.pyi [found 132] (5ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/commondialog.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/commondialog.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/commondialog.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/constants.pyi [found 77] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/dialog.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/dialog.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/dialog.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/filedialog.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/filedialog.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/filedialog.pyi [found 15] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/font.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/font.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/font.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/messagebox.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/messagebox.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/messagebox.pyi [found 25] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/ttk.pyi [fs read 0ms] (13ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/ttk.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tkinter/ttk.pyi [found 26] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tokenize.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tokenize.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/token.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/token.pyi (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tokenize.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tokenize.pyi [found 47] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tracemalloc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tracemalloc.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_tracemalloc.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_tracemalloc.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tracemalloc.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/tracemalloc.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi [found 24] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [found 78] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/__init__.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/async_case.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/async_case.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/case.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/case.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/loader.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/loader.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/main.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/main.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/runner.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/runner.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/signals.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/signals.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/suite.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/suite.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/__init__.pyi (8ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi [fs read 1ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_importlib_modulespec.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/_importlib_modulespec.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/result.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/result.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/__init__.pyi [found 27] (4ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/async_case.pyi [found 1] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/case.pyi [found 9] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/loader.pyi [found 5] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/main.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/mock.pyi [fs read 0ms] (7ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/mock.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/mock.pyi [found 15] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/result.pyi [found 2] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/runner.pyi [found 2] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/signals.pyi [found 4] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/suite.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/util.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/unittest/util.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/error.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/error.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/error.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/parse.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/parse.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/parse.pyi [found 29] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/request.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/request.pyi (4ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/request.pyi [found 39] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/response.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/response.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/response.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/robotparser.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/robotparser.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/urllib/robotparser.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/venv/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/venv/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/venv/__init__.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/winreg.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/winreg.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/winreg.pyi [found 75] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/client.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/client.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/client.pyi [found 40] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/server.pyi [fs read 1ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/server.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xmlrpc/server.pyi [found 12] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xxlimited.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xxlimited.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/xxlimited.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/zipapp.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/zipapp.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/zipapp.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [found 11] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/aifc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/aifc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/aifc.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/antigravity.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/antigravity.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/antigravity.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/argparse.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/argparse.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/argparse.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/array.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/array.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/array.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asynchat.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asynchat.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asynchat.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asyncore.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asyncore.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/asyncore.pyi [found 15] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/audioop.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/audioop.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/audioop.pyi [found 29] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/base64.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/base64.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/base64.pyi [found 20] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bdb.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bdb.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bdb.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binascii.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binascii.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binascii.pyi [found 18] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binhex.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binhex.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/binhex.pyi [found 11] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bisect.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bisect.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_bisect.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_bisect.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bisect.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bisect.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bz2.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bz2.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/bz2.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cProfile.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cProfile.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cProfile.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/calendar.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/calendar.pyi (7ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/calendar.pyi [found 37] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgi.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgi.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgi.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgitb.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgitb.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cgitb.pyi [found 11] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/chunk.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/chunk.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/chunk.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmath.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmath.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmath.pyi [found 30] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmd.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmd.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/cmd.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/code.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/code.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/code.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codecs.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codecs.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codecs.pyi [found 43] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codeop.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codeop.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/codeop.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/colorsys.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/colorsys.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/colorsys.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/contextlib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/contextlib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/contextlib.pyi [found 12] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/copy.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/copy.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/copy.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/crypt.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/crypt.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/crypt.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/csv.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/csv.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/csv.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/__init__.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/__init__.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/__init__.pyi [found 64] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/util.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/util.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/wintypes.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/wintypes.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ctypes/wintypes.pyi [found 134] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_curses.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_curses.pyi (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/__init__.pyi (6ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/__init__.pyi [found 5] (2ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/ascii.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/ascii.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/ascii.pyi [found 56] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/panel.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/panel.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/panel.pyi [found 4] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/textpad.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/textpad.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/curses/textpad.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/datetime.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/datetime.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/datetime.pyi [found 8] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/decimal.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/decimal.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/decimal.pyi [found 36] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/difflib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/difflib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/difflib.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dis.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dis.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dis.pyi [found 13] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/doctest.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/doctest.pyi (4ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/doctest.pyi [found 43] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dummy_threading.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dummy_threading.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_dummy_threading.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_dummy_threading.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dummy_threading.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/dummy_threading.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ensurepip/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ensurepip/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ensurepip/__init__.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/errno.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/errno.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/errno.pyi [found 134] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/filecmp.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/filecmp.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/filecmp.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fileinput.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fileinput.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fileinput.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/formatter.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/formatter.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/formatter.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fractions.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fractions.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/fractions.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ftplib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ftplib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ftplib.pyi [found 18] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi [found 11] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/grp.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/grp.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/grp.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/hmac.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/hmac.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/hmac.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imaplib.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imaplib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imaplib.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imghdr.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imghdr.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/imghdr.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/keyword.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/keyword.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/keyword.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/driver.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/driver.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/driver.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/grammar.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/grammar.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/grammar.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/literals.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/literals.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/literals.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/parse.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/parse.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/parse.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/pgen.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/pgen.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/pgen.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/token.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/token.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/token.pyi [found 65] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/tokenize.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/tokenize.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pgen2/tokenize.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pygram.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pygram.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pygram.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pytree.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pytree.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/lib2to3/pytree.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/linecache.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/linecache.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/linecache.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/locale.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/locale.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/locale.pyi [found 82] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/__init__.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/__init__.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/__init__.pyi [found 52] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/config.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/config.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/config.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/handlers.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/handlers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/logging/handlers.pyi [found 20] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/macpath.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/macpath.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/macpath.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailbox.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailbox.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailbox.pyi [found 18] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailcap.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailcap.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mailcap.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/marshal.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/marshal.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/marshal.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/math.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/math.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/math.pyi [found 55] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mimetypes.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mimetypes.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mimetypes.pyi [found 13] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mmap.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mmap.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/mmap.pyi [found 38] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/modulefinder.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/modulefinder.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/modulefinder.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/schema.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/schema.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/schema.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/sequence.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/sequence.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/sequence.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/text.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/text.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msilib/text.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msvcrt.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msvcrt.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/msvcrt.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/netrc.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/netrc.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/netrc.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/nis.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/nis.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/nis.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/numbers.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/numbers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/numbers.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/opcode.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/opcode.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/opcode.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/operator.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/operator.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/operator.pyi [found 99] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/optparse.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/optparse.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/optparse.pyi [found 20] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/parser.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/parser.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/parser.pyi [found 11] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pdb.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pdb.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pdb.pyi [found 15] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickle.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickle.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickle.pyi [found 82] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickletools.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickletools.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pickletools.pyi [found 77] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pkgutil.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pkgutil.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pkgutil.pyi [found 12] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/plistlib.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/plistlib.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/plistlib.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/poplib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/poplib.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/poplib.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pprint.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pprint.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pprint.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/profile.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/profile.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/profile.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pstats.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pstats.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pstats.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pty.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pty.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pty.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pwd.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pwd.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pwd.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/py_compile.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/py_compile.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/py_compile.pyi [found 4] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyclbr.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyclbr.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyclbr.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc.pyi [found 48] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/topics.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/topics.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pydoc_data/topics.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/__init__.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/errors.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/errors.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/errors.pyi [found 39] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/model.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/model.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/pyexpat/model.pyi [found 10] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/quopri.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/quopri.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/quopri.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/readline.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/readline.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/readline.pyi [found 27] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/rlcompleter.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/rlcompleter.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/rlcompleter.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sched.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sched.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sched.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/select.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/select.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/select.pyi [found 29] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/shutil.pyi [fs read 1ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/shutil.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/shutil.pyi [found 28] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/site.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/site.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/site.pyi [found 8] (3ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/smtpd.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/smtpd.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/smtpd.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sndhdr.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sndhdr.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sndhdr.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/socket.pyi [fs read 0ms] (5ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/socket.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/socket.pyi [found 431] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/dbapi2.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/dbapi2.pyi (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/__init__.pyi (3ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/__init__.pyi [found 71] (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sqlite3/dbapi2.pyi [found 71] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sre_compile.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sre_compile.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sre_compile.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ssl.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ssl.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/ssl.pyi [found 121] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/stringprep.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/stringprep.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/stringprep.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/struct.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/struct.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/struct.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sunau.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sunau.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sunau.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/symtable.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/symtable.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/symtable.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sysconfig.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sysconfig.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/sysconfig.pyi [found 12] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/syslog.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/syslog.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/syslog.pyi [found 37] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tabnanny.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tabnanny.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tabnanny.pyi [found 5] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tarfile.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tarfile.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tarfile.pyi [found 44] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/telnetlib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/telnetlib.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/telnetlib.pyi [found 75] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/termios.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/termios.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/termios.pyi [found 238] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/this.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/this.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/this.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/threading.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/threading.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/threading.pyi [found 25] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/time.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/time.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/time.pyi [found 39] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/timeit.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/timeit.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/timeit.pyi [found 5] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/token.pyi [found 70] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/trace.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/trace.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/trace.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/traceback.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/traceback.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/traceback.pyi [found 20] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tty.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tty.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/tty.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/turtle.pyi [fs read 0ms] (6ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/turtle.pyi (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/turtle.pyi [found 121] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/unicodedata.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/unicodedata.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/unicodedata.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uu.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uu.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uu.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uuid.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uuid.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/uuid.pyi [found 15] (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wave.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wave.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wave.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/weakref.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/weakref.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/weakref.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/webbrowser.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/webbrowser.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/webbrowser.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/winsound.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/winsound.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/winsound.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/handlers.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/handlers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/handlers.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/headers.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/headers.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/headers.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/simple_server.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/simple_server.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/simple_server.pyi [found 8] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/types.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/types.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/wsgi.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/wsgi.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/types.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/types.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/util.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/util.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/util.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/validate.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/validate.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/wsgiref/validate.pyi [found 7] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xdrlib.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xdrlib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xdrlib.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/NodeFilter.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/NodeFilter.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/NodeFilter.pyi [found 1] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/domreg.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/domreg.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/__init__.pyi [found 41] (2ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/domreg.pyi [found 4] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/expatbuilder.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/expatbuilder.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/expatbuilder.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minicompat.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minicompat.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minicompat.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minidom.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minidom.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/minidom.pyi [found 3] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/pulldom.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/pulldom.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/pulldom.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/xmlbuilder.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/xmlbuilder.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/dom/xmlbuilder.pyi [found 1] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementInclude.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementInclude.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementInclude.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementPath.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementPath.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementPath.pyi [found 14] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementTree.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementTree.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/ElementTree.pyi [found 25] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/cElementTree.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/cElementTree.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/etree/cElementTree.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/__init__.pyi [found 0] (1ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/errors.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/errors.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/errors.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/model.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/model.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/parsers/expat/model.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/__init__.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/__init__.pyi [found 9] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/handler.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/handler.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/handler.pyi [found 19] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/saxutils.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/saxutils.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/saxutils.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/xmlreader.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/xmlreader.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/xml/sax/xmlreader.pyi [found 6] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipfile.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipfile.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipfile.pyi [found 17] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipimport.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipimport.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zipimport.pyi [found 2] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zlib.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zlib.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/zlib.pyi [found 23] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi [found 68] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/core.pyi [fs read 0ms] (5ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/core.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/decorators.pyi [fs read 0ms] (6ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/decorators.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/exceptions.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/exceptions.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/formatting.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/formatting.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/globals.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/globals.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/parser.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/parser.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/termui.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/termui.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/types.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/types.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/utils.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/utils.pyi (0ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi [found 69] (21ms)
[IDX(2)]     parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi [fs read 0ms] (11ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/dumper.pyi [fs read 0ms] (6ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/dumper.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/error.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/error.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/events.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/events.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/loader.pyi [fs read 0ms] (8ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/loader.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/nodes.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/nodes.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/tokens.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/tokens.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/cyaml.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/cyaml.pyi (0ms)
[IDX(2)]     binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi (18ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi ...
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/emitter.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/emitter.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/representer.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/representer.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/resolver.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/resolver.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/serializer.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/serializer.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/composer.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/composer.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/constructor.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/constructor.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/parser.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/parser.pyi (1ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/reader.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/reader.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/scanner.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/scanner.pyi (0ms)
[IDX(2)]       parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (1ms)
[IDX(2)]     indexing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi [found 105] (12ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/__init__.py (1ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/main.py [fs read 0ms] (18ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/main.py (4ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/dotenv/__init__.py [found 8] (22ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_connection.py [fs read 1ms] (15ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_connection.py ...
[IDX(2)]         parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_events.py [fs read 0ms] (6ms)
[IDX(2)]         binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_events.py (2ms)
[IDX(2)]         parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_state.py [fs read 0ms] (5ms)
[IDX(2)]         binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_state.py (2ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_connection.py (20ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/__init__.py (36ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_util.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/_util.py (1ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/h11/__init__.py [found 23] (3ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/parser/__init__.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/parser/__init__.py ...
[IDX(2)]         parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/parser/errors.py [fs read 0ms] (0ms)
[IDX(2)]         binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/parser/errors.py (0ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/parser/__init__.py (1ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/__init__.py (2ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/httptools/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/errors.py [fs read 0ms] (12ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/errors.py (5ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/main.py [fs read 0ms] (38ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/main.py (13ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/networks.py [fs read 0ms] (16ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/networks.py (5ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/tools.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/tools.py (1ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/types.py [fs read 0ms] (11ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/types.py (6ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/__init__.py (111ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/class_validators.py [fs read 0ms] (14ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/class_validators.py (4ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/decorator.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/decorator.py (3ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/env_settings.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/env_settings.py (1ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/error_wrappers.py [fs read 0ms] (9ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/error_wrappers.py (1ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/fields.py [fs read 1ms] (23ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/fields.py (8ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/parse.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/parse.py (1ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/version.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/version.py (0ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/pydantic/__init__.py [found 71] (78ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/__init__.py [fs read 0ms] (10ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/__init__.py (2ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/_deprecation_warning.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/_deprecation_warning.py (0ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/extension.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/extension.py (1ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/dist.py [fs read 0ms] (41ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/dist.py (9ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/depends.py [fs read 1ms] (7ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/depends.py (2ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/setuptools/__init__.py [found 8] (65ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/__init__.py (0ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/config.py [fs read 0ms] (18ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/config.py (3ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/main.py [fs read 0ms] (15ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/main.py (2ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/server.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/server.py (5ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvicorn/__init__.py [found 4] (47ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvloop/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvloop/__init__.py (1ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/uvloop/__init__.py [found 3] (0ms)
[IDX(2)]     parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/__init__.py ...
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/auth.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/auth.py (2ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/client.py [fs read 0ms] (17ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/client.py (5ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/exceptions.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/exceptions.py (5ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/protocol.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/protocol.py ...
[IDX(2)]         parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/framing.py [fs read 0ms] (9ms)
[IDX(2)]         binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/framing.py (6ms)
[IDX(2)]         parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/handshake.py [fs read 0ms] (5ms)
[IDX(2)]         binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/handshake.py (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/protocol.py (30ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/server.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/server.py (7ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/typing.py [fs read 1ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/typing.py (0ms)
[IDX(2)]       parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/uri.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/uri.py (0ms)
[IDX(2)]     binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/__init__.py (98ms)
[IDX(2)]     indexing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/websockets/__init__.py [found 41] (1ms)
[IDX(2)]   index execution environment /home/user/code/vscodedebugfastapi [found 7174 in 390 files] (1996ms)
[IDX(2)] index libraries /home/user/code/vscodedebugfastapi [found 7174 in 1 exec envs] (2277ms)
[Info  - 3:55:34 PM] [IDX(2)] Long operation: index libraries /home/user/code/vscodedebugfastapi (2277ms)
[Info  - 3:55:34 PM] Indexer done(2). indexed 390 files
[FG] parsing: /home/user/code/vscodedebugfastapi/main.py (45ms)
[FG] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 4ms] (105ms)
[FG] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (33ms)
[FG] binding: /home/user/code/vscodedebugfastapi/main.py (0ms)
[FG] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 1ms] (11ms)
[FG] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (1ms)
[FG] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 1ms] (4ms)
[FG] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (1ms)
[FG] parsing: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 1ms] (31ms)
[FG] binding: /home/user/.vscode/extensions/ms-python.vscode-pylance-2021.1.2-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (17ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] completion at /home/user/code/vscodedebugfastapi/main.py:6:26 ...
[FG]   parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/__init__.py [fs read 1ms] (3ms)
[FG]   binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/__init__.py (0ms)
[FG]   parsing: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/applications.py [fs read 1ms] (46ms)
[FG]   binding: /home/user/code/vscodedebugfastapi/env3.8/lib/python3.8/site-packages/fastapi/applications.py (5ms)
[FG] completion at /home/user/code/vscodedebugfastapi/main.py:6:26 [found 7 items] (103ms)
IntelliCode: current invocation did not produce any meaningful tokens.
Time taken to get recommendations: 4 ms, Memory increase: 99 KB.
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] completion at /home/user/code/vscodedebugfastapi/main.py:6:26 [found 7 items] (40ms)
IntelliCode: current invocation did not produce any meaningful tokens.
Time taken to get recommendations: 1 ms, Memory increase: 32 KB.
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] completion at /home/user/code/vscodedebugfastapi/main.py:6:26 [found 7 items] (23ms)
IntelliCode: current invocation did not produce any meaningful tokens.
Time taken to get recommendations: 1 ms, Memory increase: 25 KB.

@jakebailey jakebailey added the needs investigation Could be an issue - needs investigation label Jan 20, 2021
@heejaechang
Copy link
Contributor

it is happening due to FastApi/__ init __ .py doesn't define __ all __ . to reduce number of items to suggest, for regular py file, we only suggest symbols defined in __ all __ for now.

@savannahostrowski @judej we might want to add import alias defined as "import * as alias" in index if __ all __ doesn't exist in __ init __ .py file?

@tiangolo
Copy link
Author

Thanks for replying @heejaechang !

I don't declare __all__ in FastAPI as it already uses import x as x, following the guidelines from Pyright: https://github.com/microsoft/pyright/blob/master/docs/typed-libraries.md#library-interface, the discussion with @erictraut (on Pyright issues and email), and the guidelines from mypy using the stricter flags: https://mypy.readthedocs.io/en/stable/command_line.html?highlight=import%20as#cmdoption-mypy-no-implicit-reexport

I prefer to declare explicit import x as x than to declare __all__. As __all__ is based on plain strings (and black magic) and not on "normal" Python syntax, so those wouldn't benefit as easily from static analysis.

@jakebailey
Copy link
Member

jakebailey commented Jan 30, 2021

For reference, this is not a recommendation to use __all__, just an explanation of the limitations we put on the indexer to attempt to not offer a world's worth of suggestions (and have bad perf while indexing). Plain Python files take a bit more effort to process than stubs, but we still want indexing to be fast and not impede other features.

We won't be able to use only "X as X" to determine what to offer, as that'll miss anything actually declared in the file, I think, so we'll have to take a look to see how to handle this.

@erictraut
Copy link
Contributor

FastAPI is a "py.typed" package. I think the indexer should change its behavior for such packages and follow the rules layed out in the typed library guidance. This guidance indicates specifically which symbols are considered public and which are not. For non-"py.typed" packages, it makes sense for the indexer to use more conservative heuristics to avoid adding lots of garbage to the completion suggestion list.

@jakebailey
Copy link
Member

We've identified a bug in one of the performance optimizations for py.typed that affected __all__ processing; it'll be included in the next release and we can see if that helps.

@jakebailey jakebailey added fixed in next version (main) A fix has been implemented and will appear in an upcoming version and removed needs investigation Could be an issue - needs investigation labels Apr 1, 2021
@jakebailey
Copy link
Member

This issue has been fixed in version 2021.4.0, which we've just released. You can find the changelog here: https://github.com/microsoft/pylance-release/blob/main/CHANGELOG.md#202140-7-april-2021

@justindujardin
Copy link

@jakebailey I tried out the latest versions and the original issue still persists. The only way I've been able to resolve it is to move all the symbols directly into __init__.py. 😢

Can you elaborate on the fix and what (if any) changes should be made to libraries in order to have the auto-import functionality generate imports from __init__.py and not the source files the symbols come from?

@jakebailey
Copy link
Member

Are you testing with fastapi or another project? This bug seemed to be specific to fastapi's layout, so your issue may be worth a new issue with a reproducer we can test and fix.

@justindujardin
Copy link

justindujardin commented Apr 20, 2021

I tested with FastAPI specifically (the snippet in the OP). The behavior is slightly different than before and it generates a shorter import path (params instead of param_functions), but it still misses the one coming from __init__.py:
Screen Shot 2021-04-20 at 1 12 54 PM

@jakebailey
Copy link
Member

Just to double check, do you have indexing explicitly enabled?

@justindujardin
Copy link

justindujardin commented Apr 20, 2021

Hmm, no, I didn't have it explicitly turned on. 😅

When I enable it, the suggestions include the shorter path as expected:
Screen Shot 2021-04-20 at 1 36 52 PM

@jakebailey
Copy link
Member

Right, thanks. This bug is fixed with indexing, but we're not yet ready to get that enabled for everyone yet. Insiders sometimes has it enabled, but we are currently working on making sure it won't cause a big perf regression (so it isn't enabled right now to help us diff versions).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fixed in next version (main) A fix has been implemented and will appear in an upcoming version
Projects
None yet
Development

No branches or pull requests

6 participants