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

Multiple invalid "cannot access member for type object" #905

Closed
albireox opened this issue Feb 2, 2021 · 15 comments
Closed

Multiple invalid "cannot access member for type object" #905

albireox opened this issue Feb 2, 2021 · 15 comments
Labels
fixed in next version (main) A fix has been implemented and will appear in an upcoming version

Comments

@albireox
Copy link

albireox commented Feb 2, 2021

Environment data

  • Language Server version: 2021.1.4-pre.1 (also tested with 2021.1.3)
  • OS and version: macOS 11.2
  • Python version (& distribution if applicable, e.g. Anaconda): pyenv 3.9.1

Expected behaviour

No errors.

Actual behaviour

I'm seeing multiple errors that appear to be incorrect. They mostly seem to be of type "cannot access member XXX for type object", but also "no overloads for XXX match parameters and others". For example, this code

import re

REPLY_RE = re.compile(b"^([<|?])([0-9A-F]{2})(:?)(.*)\n?$")

raw_reply = b"<01PONG"
parsed = REPLY_RE.match(raw_reply)
if not parsed:
    raise ValueError("Received unparseable reply to command")

rtype, rcid, rbin, rmessage = parsed.groups()
type: str = rtype.decode()
command_id: int = int(rcid, 16)
is_binary: bool = rbin.decode() == ":"

produces the errors seen in the screenshot. The errors don't appear immediately, sometimes it takes a couple saves before they pop up, but then they usually stay.

Screen Shot 2021-02-01 at 18 56 20

When I hover over the variables (rtype, rcid) they show the correct types, and in fact the docstring for, for exaple, decode is shown correctly.

If I run pyright with node directly, none of these errors show up.

Logs

[Info  - 7:02:08 PM] Pylance language server 2021.1.4-pre.1 (pyright 61c53da4) starting
[Info  - 7:02:08 PM] Server root directory: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist
[Info  - 7:02:08 PM] No configuration file found.
[Info  - 7:02:08 PM] Setting pythonPath for service "archon": "/Users/albireo/.pyenv/versions/archon/bin/python"
[Error - 7:02:08 PM] venvPath /Users/albireo/Documents/Code/sdss5/archon/~/.pyenv/versions/3.9.0/bin/python is not a valid directory.
[Info  - 7:02:08 PM] Assuming Python version 3.9
[Info  - 7:02:08 PM] Assuming Python platform Darwin
[Info  - 7:02:08 PM] Searching for source files
[Info  - 7:02:08 PM] Found 42 source files
[Info  - 7:02:08 PM] Background analysis(1) root directory: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist
[Info  - 7:02:08 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: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (32ms)
[Info  - 7:02:08 PM] Indexer background runner(2) root directory: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist
[Info  - 7:02:08 PM] Indexing(2) started
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 3ms] (111ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (36ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (1ms)
[IDX(2)] index libraries /Users/albireo/Documents/Code/sdss5/archon ...
[IDX(2)]   read stdlib indices (94ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [fs read 0ms] (10ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi (1ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 3ms] (16ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (2ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 1ms] (6ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (1ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (30ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (13ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [fs read 0ms] (2ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi (0ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [fs read 0ms] (2ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi (1ms)
Background analysis message: getSemanticTokens
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py ...
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (10ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (10ms)
Background analysis message: resumeAnalysis
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py [fs read 0ms] (46ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py (2ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py [found 9] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py [fs read 0ms] (5ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py [found 4] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py [fs read 0ms] (29ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py [fs read 0ms] (8ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py [found 0] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py [fs read 0ms] (21ms)
[IDX(2)]   scan packages [found 118 modules over 1 exec env] (282ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py (2ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py [fs read 1ms] (13ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py [found 6] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py
[IDX(2)]   index execution environment /Users/albireo/Documents/Code/sdss5/archon ...
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/docutils/__init__.pyi [fs read 0ms] (13ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py [fs read 0ms] (14ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py [fs read 0ms] (11ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py [fs read 0ms] (10ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py [fs read 1ms] (30ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py (3ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py [fs read 0ms] (9ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py [fs read 1ms] (5ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py [fs read 0ms] (5ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py [fs read 1ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 2ms] (95ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py [fs read 0ms] (9ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py [found 5] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (32ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/docutils/__init__.pyi (1ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/docutils/__init__.pyi [found 1] (1ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py [fs read 0ms] (29ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (6ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py [found 2] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py [found 10] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi [fs read 1ms] (24ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py [fs read 0ms] (14ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi (4ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/pkg_resources/__init__.pyi [found 68] (0ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py (2ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi (1ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/3/typed_ast/__init__.pyi [found 0] (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py [found 40] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py [found 0] (2ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/attr/__init__.pyi [fs read 0ms] (5ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py [fs read 1ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/attr/__init__.pyi (2ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/attr/__init__.pyi [found 31] (0ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/certifi.pyi [fs read 0ms] (0ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/certifi.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/certifi.pyi [found 1] (0ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/__init__.pyi [fs read 0ms] (0ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/__init__.pyi (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/universaldetector.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/universaldetector.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/chardet/__init__.pyi [found 2] (3ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi (0ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py [fs read 0ms] (6ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py [found 14] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py [found 12] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py [found 5] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py [found 4] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/core.pyi [fs read 0ms] (15ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/core.pyi (4ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi [fs read 0ms] (6ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi [found 4] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi [fs read 0ms] (2ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi (2ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [fs read 1ms] (2ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi [fs read 0ms] (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/decorators.pyi [fs read 0ms] (19ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi (2ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi [found 11] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/decorators.pyi (3ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/exceptions.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/exceptions.pyi (1ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi [fs read 0ms] (7ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/formatting.pyi [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/formatting.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/globals.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/globals.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/parser.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/parser.pyi (1ms)
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi [fs read 0ms] (8ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi [found 15] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/termui.pyi [fs read 0ms] (15ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/termui.pyi (2ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/types.pyi [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/types.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/utils.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/utils.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/click/__init__.pyi [found 69] (77ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/__init__.pyi [fs read 0ms] (26ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/bccache.pyi [fs read 1ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/bccache.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/environment.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/environment.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/exceptions.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/exceptions.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/filters.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/filters.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/loaders.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/loaders.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/runtime.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/runtime.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/utils.pyi [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/utils.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/markupsafe/__init__.pyi [fs read 0ms] (12ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/markupsafe/__init__.pyi (2ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/markupsafe/_native.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/markupsafe/_native.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/jinja2/__init__.pyi [found 34] (36ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/markupsafe/__init__.pyi [found 6] (0ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/pytz/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/pytz/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/pytz/__init__.pyi [found 18] (0ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/__init__.pyi [fs read 1ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/api.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/api.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/exceptions.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/exceptions.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/models.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/models.pyi (2ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/sessions.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/sessions.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/status_codes.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/status_codes.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/requests/__init__.pyi [found 28] (10ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/toml.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/toml.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/toml.pyi [found 5] (1ms)
[IDX(2)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi [fs read 0ms] (24ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/dumper.pyi [fs read 0ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/dumper.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/error.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/error.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/events.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/events.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/loader.pyi [fs read 0ms] (16ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/loader.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/nodes.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/nodes.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/tokens.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/tokens.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/cyaml.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/cyaml.pyi (0ms)
[IDX(2)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi (39ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/emitter.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/emitter.pyi (2ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/representer.pyi [fs read 1ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/representer.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/resolver.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/resolver.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/serializer.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/serializer.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/composer.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/composer.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/constructor.pyi [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/constructor.pyi (2ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/parser.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/parser.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/reader.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/reader.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/scanner.pyi [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/scanner.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (3ms)
[IDX(2)]     indexing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/yaml/__init__.pyi [found 105] (47ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/Python.framework/Versions/3.9/lib/python3.9/xml/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/Python.framework/Versions/3.9/lib/python3.9/xml/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/Python.framework/Versions/3.9/lib/python3.9/xml/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/channel.py [fs read 0ms] (19ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/channel.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/connection.py [fs read 0ms] (12ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/connection.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/exceptions.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/exceptions.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/exceptions.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/exceptions.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/exchange.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/exchange.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/message.py [fs read 1ms] (21ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/message.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/queue.py [fs read 0ms] (11ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/queue.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_channel.py [fs read 1ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_channel.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_connection.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_connection.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_exchange.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_exchange.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_queue.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/robust_queue.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/version.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/version.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aio_pika/__init__.py [found 22] (110ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/__init__.py [fs read 0ms] (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/__init__.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/__init__.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/channel.py [fs read 0ms] (20ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/channel.py (9ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/connection.py [fs read 0ms] (11ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/connection.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/version.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/version.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/aiormq/__init__.py [found 40] (49ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/cli.py [fs read 0ms] (9ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/cli.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/core.py [fs read 0ms] (24ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/core.py (5ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/exceptions.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/exceptions.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/daemonocle/__init__.py [found 6] (41ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/iniconfig/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/iniconfig/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/iniconfig/__init__.pyi [found 3] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/multidict/__init__.pyi [fs read 1ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/multidict/__init__.pyi (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/multidict/__init__.pyi [found 9] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi [fs read 1ms] (51ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi (15ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__about__.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__about__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/packaging/__init__.py [found 8] (2ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/constants.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/constants.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/header.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/header.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pamqp/__init__.py [found 3] (12ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/__init__.pyi [fs read 0ms] (7ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/grammar.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/grammar.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/parser.py [fs read 0ms] (7ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/parser.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/utils.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/utils.pyi (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/parso/__init__.pyi [found 7] (10ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/exceptions.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/exceptions.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/utils.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/utils.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/pty_spawn.py [fs read 0ms] (12ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/pty_spawn.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/run.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/run.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pexpect/__init__.py [found 11] (27ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/manager.py [fs read 0ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/manager.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/callers.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/callers.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/hooks.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/hooks.py (2ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pluggy/__init__.py [found 5] (26ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/application/__init__.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/application/__init__.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/application/application.py [fs read 1ms] (62ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/application/application.py (6ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/__init__.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/__init__.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/ansi.py [fs read 1ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/ansi.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/html.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/formatted_text/html.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/__init__.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/__init__.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/prompt.py [fs read 0ms] (47ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/prompt.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/utils.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/shortcuts/utils.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/prompt_toolkit/__init__.py [found 8] (147ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/__init__.py [fs read 0ms] (30ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/__init__.py (11ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/_common.py [fs read 1ms] (12ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/_common.py (4ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/psutil/__init__.py [found 75] (17ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/py/__init__.pyi [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/py/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/py/__init__.pyi [found 8] (1ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pygments/__init__.py [fs read 0ms] (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pygments/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pygments/__init__.py [found 3] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/__init__.pyi [fs read 0ms] (4ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/__init__.pyi (2ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/__init__.pyi ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/typing.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/typing.pyi (5ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pyrsistent/__init__.pyi [found 50] (7ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest/__init__.py [fs read 0ms] (38ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/__init__.py [fs read 1ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/__init__.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/assertion/__init__.py [fs read 1ms] (7ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/assertion/__init__.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/cacheprovider.py [fs read 0ms] (27ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/cacheprovider.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/capture.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/capture.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/config/__init__.py [fs read 0ms] (32ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/config/__init__.py (10ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/config/exceptions.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/config/exceptions.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/fixtures.py [fs read 1ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/fixtures.py (12ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/freeze_support.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/freeze_support.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/logging.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/logging.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/main.py [fs read 1ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/main.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/mark/__init__.py [fs read 1ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/mark/__init__.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/mark/structures.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/mark/structures.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/monkeypatch.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/monkeypatch.py (5ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/nodes.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/nodes.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/outcomes.py [fs read 1ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/outcomes.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/pytester.py [fs read 0ms] (28ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/pytester.py (9ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/python.py [fs read 0ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/python.py (9ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/python_api.py [fs read 1ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/python_api.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/recwarn.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/recwarn.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/tmpdir.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/tmpdir.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/warning_types.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/_pytest/warning_types.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest/__init__.py [found 56] (260ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/plugin.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/plugin.py (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/__init__.py (6ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/pytest_mock/__init__.py [found 10] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/regex.py [fs read 0ms] (16ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/regex.py ...
[IDX(2)]         parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/_regex_core.py [fs read 0ms] (27ms)
[IDX(2)]         binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/_regex_core.py (24ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/regex.py (54ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/__init__.py (70ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/regex/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__config__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__config__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__config__.py [found 2] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__init__.py [fs read 0ms] (22ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/random/__init__.pyi [fs read 1ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/random/__init__.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/fft/__init__.pyi [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/fft/__init__.pyi (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/__init__.py [found 4] (2ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/cluster/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/cluster/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/cluster/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/__init__.py [fs read 0ms] (5ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/codata.py [fs read 1ms] (28ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/codata.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/constants.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/constants.py (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/__init__.py (36ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/constants/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_basic.py [fs read 1ms] (14ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_basic.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_realtransforms.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_realtransforms.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_helper.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_helper.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_backend.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_backend.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_pocketfft/helper.py [fs read 1ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/_pocketfft/helper.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fft/__init__.py [found 37] (24ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/basic.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/basic.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/pseudo_diffs.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/pseudo_diffs.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/helper.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/helper.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/realtransforms.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/realtransforms.py (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/__init__.py (17ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/fft/helper.py [fs read 0ms] (7ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/fft/helper.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/fftpack/__init__.py [found 31] (8ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/_quadrature.py [fs read 1ms] (19ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/_quadrature.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/odepack.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/odepack.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/quadpack.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/quadpack.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/_ode.py [fs read 1ms] (17ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/_ode.py (4ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/__init__.py (53ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/integrate/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/interpolate.py [fs read 1ms] (51ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/interpolate.py (8ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/fitpack.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/fitpack.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/fitpack2.py [fs read 0ms] (28ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/fitpack2.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/polyint.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/polyint.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_cubic.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_cubic.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/ndgriddata.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/ndgriddata.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_bsplines.py [fs read 1ms] (9ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_bsplines.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_pade.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/_pade.py (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/__init__.py (152ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/interpolate/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/io/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/io/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/io/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/misc.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/misc.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/basic.py [fs read 1ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/basic.py (3ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp.py [fs read 1ms] (14ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_lu.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_lu.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_ldl.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_ldl.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_cholesky.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_cholesky.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_qr.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_qr.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_qz.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_qz.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_svd.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_svd.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_schur.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/decomp_schur.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_polar.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_polar.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/matfuncs.py [fs read 0ms] (7ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/matfuncs.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/blas.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/blas.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/lapack.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/lapack.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/special_matrices.py [fs read 0ms] (14ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/special_matrices.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_solvers.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_solvers.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_procrustes.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_procrustes.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_sketches.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_sketches.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_cossin.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/_decomp_cossin.py (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/__init__.py (115ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/linalg/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/common.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/common.py (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/__init__.py (6ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/misc/__init__.py [found 5] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/filters.py [fs read 0ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/filters.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/fourier.py [fs read 1ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/fourier.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/interpolation.py [fs read 1ms] (9ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/interpolation.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/measurements.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/measurements.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/morphology.py [fs read 1ms] (13ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/morphology.py (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/__init__.py (62ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/ndimage/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/odrpack.py [fs read 0ms] (7ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/odrpack.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/models.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/models.py (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/__init__.py (14ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/odr/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/__init__.py [fs read 0ms] (4ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/optimize.py [fs read 0ms] (22ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/optimize.py (5ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_minimize.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_minimize.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_root.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_root.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_root_scalar.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/_root_scalar.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/minpack.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/minpack.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/zeros.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/zeros.py (6ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/nonlin.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/nonlin.py (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/__init__.py (75ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/optimize/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/waveforms.py [fs read 1ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/waveforms.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/bsplines.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/bsplines.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/filter_design.py [fs read 0ms] (24ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/filter_design.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/fir_filter_design.py [fs read 1ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/fir_filter_design.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/ltisys.py [fs read 0ms] (17ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/ltisys.py (4ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/lti_conversion.py [fs read 1ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/lti_conversion.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/signaltools.py [fs read 0ms] (27ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/signaltools.py (7ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/spectral.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/spectral.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/wavelets.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/wavelets.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/_peak_finding.py [fs read 0ms] (8ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/_peak_finding.py (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/__init__.py (139ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/signal/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/__init__.py [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/base.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/base.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/csr.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/csr.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/csc.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/csc.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/lil.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/lil.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/dok.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/dok.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/coo.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/coo.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/dia.py [fs read 1ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/dia.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/bsr.py [fs read 1ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/bsr.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/construct.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/construct.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/extract.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/extract.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/_matrix_io.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/_matrix_io.py (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/__init__.py (47ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/sparse/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/kdtree.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/kdtree.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/ckdtree.pyi [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/ckdtree.pyi (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/_plotutils.py [fs read 0ms] (10ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/_plotutils.py (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/__init__.py (18ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/spatial/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/__init__.py [fs read 0ms] (4ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/_ufuncs.pyi [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/_ufuncs.pyi (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/_basic.py [fs read 0ms] (14ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/_basic.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/orthogonal.pyi [fs read 1ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/orthogonal.pyi (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/__init__.py (24ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/special/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/__init__.py [fs read 0ms] (2ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/stats.py [fs read 1ms] (41ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/stats.py (13ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/distributions.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/distributions.py ...
[IDX(2)]         parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_continuous_distns.py [fs read 1ms] (46ms)
[IDX(2)]         binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_continuous_distns.py (17ms)
[IDX(2)]         parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_discrete_distns.py [fs read 0ms] (6ms)
[IDX(2)]         binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_discrete_distns.py (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/distributions.py (71ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/morestats.py [fs read 0ms] (16ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/morestats.py (6ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_binned_statistic.py [fs read 0ms] (6ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_binned_statistic.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_multivariate.py [fs read 0ms] (27ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/_multivariate.py (7ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/__init__.py (191ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/scipy/stats/__init__.py [found 0] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/__init__.py [fs read 0ms] (23ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/_deprecation_warning.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/_deprecation_warning.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/extension.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/extension.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/dist.py [fs read 0ms] (23ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/dist.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/depends.py [fs read 0ms] (5ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/depends.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/setuptools/__init__.py [found 8] (35ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/snowballstemmer/__init__.py [fs read 0ms] (4ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/snowballstemmer/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/snowballstemmer/__init__.py [found 1] (0ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/__init__.py [fs read 0ms] (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/extension.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/extension.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/enabled.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/enabled.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/named.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/named.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/hook.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/hook.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/driver.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/driver.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/stevedore/__init__.py [found 5] (6ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/__init__.py [fs read 0ms] (1ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/__init__.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/connectionpool.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/connectionpool.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/filepost.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/filepost.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/poolmanager.py [fs read 0ms] (2ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/poolmanager.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/response.py [fs read 1ms] (9ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/response.py (2ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/request.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/request.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/retry.py [fs read 0ms] (3ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/retry.py (1ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/timeout.py [fs read 0ms] (1ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/timeout.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/url.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/util/url.py (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/urllib3/__init__.py [found 14] (34ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/__init__.py [fs read 0ms] (0ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/__init__.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/__init__.py ...
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/wcwidth.py [fs read 0ms] (4ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/wcwidth.py (0ms)
[IDX(2)]       parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/unicode_versions.py [fs read 0ms] (0ms)
[IDX(2)]       binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/unicode_versions.py (0ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/wcwidth/__init__.py [found 3] (6ms)
[IDX(2)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/yarl/__init__.pyi [fs read 0ms] (3ms)
[IDX(2)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/yarl/__init__.pyi (1ms)
[IDX(2)]     indexing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/yarl/__init__.pyi [found 6] (0ms)
[IDX(2)]   index execution environment /Users/albireo/Documents/Code/sdss5/archon [found 7890 in 429 files] (2625ms)
[Info  - 7:02:11 PM] [IDX(2)] Long operation: index execution environment /Users/albireo/Documents/Code/sdss5/archon (2625ms)
[IDX(2)] index libraries /Users/albireo/Documents/Code/sdss5/archon [found 7890 in 1 exec envs] (3003ms)
[Info  - 7:02:11 PM] [IDX(2)] Long operation: index libraries /Users/albireo/Documents/Code/sdss5/archon (3003ms)
[Info  - 7:02:11 PM] Indexer done(2). indexed 429 files
Background analysis message: markFilesDirty
Background analysis message: analyze
Background analysis message: setFileOpened
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (96ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 4ms] (132ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (34ms)
[FG] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (6ms)
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (10ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (3ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi [fs read 0ms] (8ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [fs read 0ms] (9ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi [fs read 0ms] (32ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi (4ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi [fs read 0ms] (5ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi (2ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi [fs read 0ms] (2ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi (1ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (132ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (146ms)
Background analysis message: getSemanticTokens
Background analysis message: getSemanticTokens
Background analysis message: getDiagnosticsForRange
Background analysis message: resumeAnalysis
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py [found 5] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (11ms)
[FG] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (1ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 2ms] (20ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (2ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 0ms] (5ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (1ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 1ms] (20ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (11ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [fs read 1ms] (4ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi (2ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [fs read 1ms] (1ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi (0ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [fs read 0ms] (4ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi (1ms)
Background analysis message: markFilesDirty
Background analysis message: analyze
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [fs read 0ms] (3ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi (2ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [fs read 0ms] (13ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi (1ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: markFilesDirty
Background analysis message: analyze
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: setFileOpened
[FG] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (62ms)
[FG] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (6ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getSemanticTokens
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (15ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (5ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi [fs read 0ms] (10ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi (4ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi [fs read 0ms] (19ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi (14ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi (0ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [fs read 0ms] (8ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi (8ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi [fs read 1ms] (87ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi (13ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi (1ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi (1ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi (2ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi (1ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py [fs read 1ms] (4ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py (1ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py (0ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py (0ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py (0ms)
[BG(1)] parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py (0ms)
[BG(1)] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi [fs read 0ms] (2ms)
[BG(1)] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi (2ms)
Background analysis message: getSemanticTokens
Background analysis message: getDiagnosticsForRange
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (24ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (24ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: resumeAnalysis
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: setFileOpened
Background analysis message: markFilesDirty
[FG] completion at /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py:266:13 ...
[FG]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (31ms)
[FG]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (7ms)
[FG]   parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [fs read 1ms] (1ms)
[FG]   binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi (1ms)
[FG]   parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [fs read 0ms] (0ms)
[FG]   binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi (1ms)
[FG]   parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [fs read 0ms] (11ms)
[FG]   binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi (10ms)
[FG]   parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [fs read 0ms] (4ms)
[FG]   binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi (1ms)
[FG]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [fs read 0ms] (1ms)
[FG]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py (1ms)
[FG]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [fs read 0ms] (0ms)
[FG]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py (0ms)
[FG]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [fs read 1ms] (1ms)
[FG]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py (1ms)
[FG] completion at /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py:266:13 [found 867 items] (144ms)
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (4ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py (1ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (67ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (71ms)
Background analysis message: resumeAnalysis
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (25ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (14ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (203ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (242ms)
Background analysis message: getSemanticTokens
Background analysis message: getDiagnosticsForRange
Background analysis message: resumeAnalysis
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py (2ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py [found 6] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py [found 5] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: invalidateAndForceReanalysis
Background analysis message: invalidateAndForceReanalysis
[Info  - 7:04:27 PM] Searching for source files
[Info  - 7:04:27 PM] Found 42 source files
Background analysis message: setTrackedFiles
Background analysis message: markAllFilesDirty
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (36ms)
[BG(1)]   parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 0ms] (32ms)
[BG(1)]   binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (29ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (2ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [fs read 0ms] (2ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [fs read 1ms] (5ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi (2ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi [fs read 1ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (11ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (3ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [fs read 0ms] (8ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi [fs read 0ms] (21ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi [fs read 1ms] (7ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi (0ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (135ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (234ms)
Background analysis message: resumeAnalysis
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (48ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (4ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi [fs read 0ms] (5ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi (2ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi [fs read 0ms] (17ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi (3ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi (4ms)
[FG] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (71ms)
[FG] parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 0ms] (64ms)
[FG] binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (18ms)
[FG] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (3ms)
[Info  - 7:04:27 PM] Searching for source files
[Info  - 7:04:27 PM] Found 42 source files
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi [fs read 0ms] (65ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi (11ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi [fs read 0ms] (6ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi (4ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 1ms] (6ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi (2ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py (0ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py (0ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi [fs read 1ms] (3ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi [fs read 0ms] (2ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi (0ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (318ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (370ms)
Background analysis message: markFilesDirty
Background analysis message: invalidateAndForceReanalysis
Background analysis message: getDiagnosticsForRange
Background analysis message: setTrackedFiles
Background analysis message: markAllFilesDirty
Background analysis message: analyze
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (23ms)
[BG(1)]   parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi [fs read 0ms] (18ms)
[BG(1)]   binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/builtins.pyi (8ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (1ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py ...
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/__future__.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/__init__.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi [fs read 0ms] (2ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/enum.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/re.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/warnings.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi [fs read 0ms] (7ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/typing.pyi (3ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py [fs read 1ms] (1ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/abc.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi [fs read 1ms] (6ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/futures.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi [fs read 0ms] (17ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/events.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/tasks.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/locks.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_warnings.pyi (0ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (89ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py (139ms)
Background analysis message: resumeAnalysis
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (24ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (2ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py ...
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi [fs read 1ms] (2ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/configparser.pyi (3ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi [fs read 0ms] (6ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/__init__.pyi (4ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/abc.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/collections/__init__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi [fs read 1ms] (43ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/__init__.pyi (6ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/third_party/2and3/typing_extensions.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/os/path.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi [fs read 0ms] (7ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/_typeshed/__init__.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi [fs read 0ms] (4ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/io.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/types.pyi (3ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/2and3/genericpath.pyi (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py [fs read 0ms] (3ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/__init__.py (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_array_like.py (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_scalars.py (1ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_shape.py (0ms)
[BG(1)]     parsing: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py [fs read 0ms] (0ms)
[BG(1)]     binding: /Users/albireo/.pyenv/versions/3.9.1/envs/archon/lib/python3.9/site-packages/numpy/typing/_dtype_like.py (0ms)
[BG(1)]     parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi (0ms)
[BG(1)]     parsing: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi [fs read 0ms] (1ms)
[BG(1)]     binding: /Users/albireo/.vscode-insiders/extensions/ms-python.vscode-pylance-2021.1.4-pre.1/dist/typeshed-fallback/stdlib/3/asyncio/streams.pyi (1ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (276ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py (302ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: resumeAnalysis
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py ...
[BG(1)]   parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (1ms)
[BG(1)]   binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (0ms)
[BG(1)]   checking: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (2ms)
[BG(1)] analyzing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (3ms)
Background analysis message: getDiagnosticsForRange
Background analysis message: resumeAnalysis
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py [fs read 0ms] (30ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py [found 9] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/create_setup.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py [found 4] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py [fs read 1ms] (17ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/__main__.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/exceptions.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/tools.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py [found 0] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py [fs read 0ms] (9ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/actor.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py [fs read 0ms] (6ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py [found 6] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/tools.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py [fs read 0ms] (6ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py [fs read 0ms] (8ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/abort.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/config.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py [fs read 0ms] (13ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py (4ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/expose.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py [fs read 1ms] (7ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/frame.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/init.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/status.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/system.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/actor/commands/talk.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py [found 3] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/__init__.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py [found 5] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/command.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/controller.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/maskbits.py
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py [found 10] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py [fs read 1ms] (11ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py [found 40] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/docs/sphinx/conf.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py [found 0] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/__init__.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py [found 2] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/conftest.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_command.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py [fs read 0ms] (4ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py (3ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py [found 14] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_config.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py [found 12] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_controller.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py [found 5] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_fetch.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_frame.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_status.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py [found 4] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_get_system.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py [fs read 1ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py [found 3] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/tests/controller/test_integrate.py
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi [found 1] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/actor.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi [fs read 0ms] (3ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi [found 4] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/base.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi [found 3] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/client.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi (1ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/command.pyi
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi [found 1] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/device.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi [fs read 0ms] (0ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi [found 7] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/exceptions.pyi
[BG(1)] parsing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi [fs read 0ms] (1ms)
[BG(1)] binding: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi (0ms)
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi [found 11] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/parser.pyi
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi [found 7] (1ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/protocol.pyi
[BG(1)] indexing: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi [found 15] (0ms)
Indexing Done: /Users/albireo/Documents/Code/sdss5/archon/typings/clu/tools.pyi
Background analysis message: resumeAnalysis
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
Background analysis message: getDiagnosticsForRange
[FG] parsing: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (1ms)
[FG] binding: /Users/albireo/Documents/Code/sdss5/archon/archon/controller/test.py (0ms)
@github-actions github-actions bot added the triage label Feb 2, 2021
@erictraut
Copy link
Contributor

I'm not able to repro the errors you're seeing.

It looks like you have some extension installed that displays diagnostics inline. What extension is that? I wonder if that's the cause of the problem?

When you see these errors, do they also appear in the Problems tab?

You said that the errors don't initially appear but do after several saves. That sounds like a caching issue somewhere.

@albireox
Copy link
Author

albireox commented Feb 2, 2021

I use error lens (https://github.com/usernamehw/vscode-error-lens) to display the error inline. The errors also appear in the problems tab. I'm not completely sure what it triggers it; I cannot always trigger it immediately, but after a few minutes working with, at least, this repository, they always appear.

I've disabled error lens and a couple other extensions that I thought may affect linting, but that doesn't seem to help.

@albireox
Copy link
Author

albireox commented Feb 2, 2021

I seem to have tracked it down to the format on save option. My vscode config for this project includes

    "python.formatting.provider": "black",
    "[python]" : {
        "editor.codeActionsOnSave": {"source.organizeImports": true},
        "editor.formatOnSave": true
    }

If I comment the "editor.formatOnSave": true it seems the problem disappears. I have been using this configuration with pylance for a couple of weeks without a problem, so something must have changed recently.

@judej judej added the needs investigation Could be an issue - needs investigation label Feb 2, 2021
@github-actions github-actions bot removed the triage label Feb 2, 2021
@jakebailey
Copy link
Member

That really curious. We do no formatting or organizing, the Python extension does. Maybe there was something that changed in their most recent release, but nothing about this issue to me would indicate that these changes would cause sync issues to this extent...

@erictraut
Copy link
Contributor

Is it possible that this is related to the recent file watcher changes?

@jakebailey
Copy link
Member

Maybe, if the external tools are operating directly on the files, but it's my understanding that they take back the changes via stdout and then call VS Code to change them, so they can handle file versioning. If not, then maybe it's some incongruency between the background and foreground thread file states when a file change event comes in, but we didn't change how the analyses are retriggered.

With a pyrightconfig.json with "verboseOutput": true set (wish that was in VSC), we print file events, so maybe we could see the difference between 2021.1.3 and a previous version, so long as we know that downgrading Pylance does actually fix the issue.

@albireox If you downgrade to 2021.1.2, does your issue go away?

@albireox
Copy link
Author

albireox commented Feb 2, 2021

@jakebailey Yes, it seems it doesn't happen with 2021.1.2. However, just downgrading wasn't enough. I had to restart VSCode for the errors to go away and not return.

@jakebailey
Copy link
Member

VS Code cannot downgrade extensions without a full reload (once an extension is loaded, it's loaded forever), so that's expected.

The even more verbose log setting I mentioned above may provide some more info, but I'm sort of wondering if we'll have enough info from that without also getting a full LSP trace to see the correlation... If it's that reproducible, can you try creating a pyrightconfig.json in your workspace root containing:

{
    "verboseOutput": true
}

And reloading to capture the logs on 2021.1.3? If you could just drag the log file into the issue comment, that'd be preferred (as I am expecting it to be larger than your other logs so far).

@albireox
Copy link
Author

albireox commented Feb 2, 2021

Here are the logs copied from the Python Language Server tab with 2021.1.2 and 3. Is that what you need? For each version I kept the formatting on save active and modified a couple files and saved them.

2021.1.3.log
2021.1.2.log

@jakebailey
Copy link
Member

I do see more FS events in the logs, yeah, including some for .tmp files, but the code should skip over those unless it's buggy (staring at the code now). It's hard to tell with the current logging if those events are actually causing problems.

I assume it's controller.py that you are editing, correct?

@albireox
Copy link
Author

albireox commented Feb 2, 2021

That's correct, that's one of the files that get the multiple errors. The code is here

https://github.com/sdss/archon/blob/main/archon/controller/controller.py

@jakebailey
Copy link
Member

Okay, I can see what's happening here, at least. We have a little element to try and prevent events related to tempfiles, but in this case, black is now producing a filename slightly different than what we hacked in previously to avoid triggering on those files from being deleted. I'll make a change so that we also ignore .tmp files.

@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 Feb 3, 2021
@jakebailey
Copy link
Member

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

@albireox
Copy link
Author

albireox commented Feb 4, 2021

I can confirm that it's fixed with the latest insiders and 2021.2.0. Thanks!

@BrutalSimplicity
Copy link

Thanks for being so quick to fix this.

You all are badass!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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

5 participants