-
Notifications
You must be signed in to change notification settings - Fork 133
Bug : MPLS crashes in multi-root workspace #1962
Comments
This sounds similar to #1913. I don't know if this is actually our bug, or some issue within VS Code and its LSP library when it comes to handling multi-root workspaces with multiple language servers. I'm assuming the right click menu doesn't even show the options, not that they just don't work? |
@jakebailey you are right, certain options disappear from the right click menu : no more "Go to Definition/Declaration/References", no more "Refactor", etc. I have just tested a very similar configuration with another language server (Omnisharp for C#), with 2 workspaces containing each a .cs file, and swapping between the two of them. I did not experience a crash/bug with the C# LS like I did with the Python LS. I cannot be 100% sure, but this seems to indicate that the problem is probably not on the VSCode side ? |
I'd look at microsoft/vscode-python#5132. I don't know how C# manages multiroot workspaces; they may just use a single language server for everything (which isn't possible on our end at this time). |
Omnisharp is not really and language server. It is a complete custom implementation talking to C# extension using its own protocol. It was developed well before LSP was born. And yes, it loads solution with all projects like Roslyn does in VS. |
My bad, I landed on this page https://github.com/OmniSharp/csharp-language-server-protocol and thought the default implementation of OmniSharp used the LSP. Do you know other extensions/languages using Language Servers that I could repeat the test protocol on ? |
Generally speaking it is implementation dependent. It is up to extension and LS to decide how to cooperate. It is simpler in some languages and more complicated in others. Python LS is derived from earlier PTVS implementation of the static analysis engine which specifically targets a single version of Python. VS runs engine per project and there is Python version per project. Python extension for VSC does something similar, except it runs LS per project root. Multiple instances of the LS are not aware of each other and do not cooperate in any form. Lifetime of the LS is between VS Code and the Python extension. LS in not aware of the client and in fact does not even know about Python extension or VS Code. It can happily run in Vim or Sublime. |
I traced this down; it's a bug in the extension around multi-root workspace support. I'll close this in favor of microsoft/vscode-python#11317 as I don't think we can do anything here. |
Environment data
Expected behaviour
MPLS works fine when used in a multi-root workspace, editing and switching between files in different workspaces.
Actual behaviour
When you open a multi-root workspace, and switch between them, MPLS will stop working for the workspace of the first file you opened : no more Intellisense, information on hover, import or methods auto-completion...
Steps to reproduce :
test1.py
andtest2.py
.test1.py
. Hover on variable names, try to import modules, assert that everything is working OK.test2.py
. Hover on variable names, try to import modules, assert that everything is also working OK.test1.py
: intellisense, hovering, auto-complete of import paths should not be working anymore.test2.py
though.Logs
Output Logs
[Info - 11:21:11 PM] Analysis cache path: /Users/erwan/Library/Caches/Microsoft/Python Language Server[Info - 11:21:11 PM] Microsoft Python Language Server version 0.5.31.0
[Info - 11:21:11 PM] Workspace root: /Users/erwan/Documents/test_project
[Info - 11:21:11 PM] GetCurrentSearchPaths /Users/erwan/Documents/test_project/.venv/bin/python3
[Info - 11:21:12 PM] Interpreter search paths:
[Info - 11:21:12 PM] /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7
[Info - 11:21:12 PM] /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
[Info - 11:21:12 PM] /Users/erwan/Documents/test_project/.venv/lib/python3.7/site-packages
[Info - 11:21:12 PM] User search paths:
[Info - 11:21:12 PM] /Users/erwan/Documents/test_project/src
[Info - 11:21:12 PM] Initializing for /Users/erwan/Documents/test_project/.venv/bin/python3
[Info - 11:21:12 PM] Analysis caching mode: None.
Opening document file:///Users/erwan/Documents/test_project/test.py
Analysis of test (User) queued. Dependencies: cProfile, dataclasses
Import: cProfile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/cProfile.py
Analysis of cProfile (Stub) queued. Dependencies:
Import: dataclasses /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/dataclasses.py
Analysis version 2 of 1 entries has started.
Analysis of cProfile (Library) queued. Dependencies: cProfile (stub), _lsprof, profile, pstats, marshal, os, sys, runpy, optparse
Create compiled (scraped): _lsprof /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_lsprof.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Import: profile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/profile.py
Analysis of profile (Stub) queued. Dependencies:
Import: pstats /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pstats.py
Analysis of _lsprof (Compiled) queued. Dependencies:
Analysis of pstats (Stub) queued. Dependencies: profile (stub), cProfile (stub), os (stub), sys (stub)
Analysis of profile (Library) queued. Dependencies: profile (stub), sys, time, marshal, pstats, os, optparse
Create built-in compiled (scraped) module: marshal /Users/erwan/Documents/test_project/.venv/bin/python3
Import: os /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/os.py
Analysis of dataclasses (Library) queued. Dependencies: re, sys, copy, types, inspect, keyword, functools, _thread
Create built-in compiled (scraped) module: sys /Users/erwan/Documents/test_project/.venv/bin/python3
Import: runpy /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/runpy.py
Analysis of test (User) on depth 0 completed in 4.6 ms.
Import: optparse /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/optparse.py
Create built-in compiled (scraped) module: time /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of marshal (Stub) queued. Dependencies:
Analysis version 2 of 1 entries has been completed in 22.71 ms.
Import: re /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/re.py
Analysis of pstats (Library) queued. Dependencies: pstats (stub), sys, os, time, marshal, re, enum, functools, cmd, readline
Import: copy /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/copy.py
Import: types /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/types.py
Analysis of time (CompiledBuiltin) queued. Dependencies: time (stub)
Import: inspect /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/inspect.py
Import: keyword /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/keyword.py
Analysis of time (Stub) queued. Dependencies: sys (stub), types (stub)
Import: functools /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/functools.py
Analysis version 2 of 1 entries has started.
Create built-in compiled (scraped) module: _thread /Users/erwan/Documents/test_project/.venv/bin/python3
Import: enum /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/enum.py
Analysis of test (User) on depth 0 completed in 0.68 ms.
Import: cmd /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/cmd.py
Analysis of _thread (CompiledBuiltin) queued. Dependencies: _thread (stub)
Missing keys: dataclasses(/Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/dataclasses.py)
Analysis version 2 of 1 entries has been completed in 1.59 ms.
Create compiled (scraped): readline /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/readline.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of enum (Stub) queued. Dependencies: sys (stub), abc (stub)
Analysis version 34 of 15 entries has started.
Analysis of abc (Stub) queued. Dependencies:
Analysis of marshal (CompiledBuiltin) queued. Dependencies: marshal (stub)
Analysis of optparse (Library) queued. Dependencies: optparse (stub), sys, os, textwrap, gettext
Import: textwrap /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/textwrap.py
Import: gettext /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/gettext.py
Analysis of re (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of cmd (Stub) queued. Dependencies:
Analysis of _thread (Stub) queued. Dependencies:
Analysis of time (CompiledBuiltin) on depth 3 completed in 4.7 ms.
Analysis of enum (Library) queued. Dependencies: enum (stub), sys, types, _collections, collections, warnings
Create built-in compiled (scraped) module: _collections /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of gettext (Library) queued. Dependencies: gettext (stub), locale, os, re, sys, warnings, struct, errno, copy
Analysis of cmd (Library) queued. Dependencies: cmd (stub), string, sys, readline
Import: collections /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/collections/init.py
Import: warnings /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/warnings.py
Import: locale /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/locale.py
Import: struct /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/struct.py
Create built-in compiled (scraped) module: errno /Users/erwan/Documents/test_project/.venv/bin/python3
Import: string /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/string.py
Analysis of errno (CompiledBuiltin) queued. Dependencies: errno (stub)
Analysis of functools (Library) queued. Dependencies: functools (stub), _functools, abc, collections, reprlib, _thread, types, weakref
Create built-in compiled (scraped) module: _functools /Users/erwan/Documents/test_project/.venv/bin/python3
Import: abc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/abc.py
Analysis of errno (Stub) queued. Dependencies: sys (stub)
Import: reprlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/reprlib.py
Import: weakref /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/weakref.py
Analysis of string (Library) queued. Dependencies: string (stub), _string, re, collections
Analysis of warnings (Library) queued. Dependencies: warnings (stub), sys, linecache, tracemalloc, re, traceback, _warnings
Create built-in compiled (scraped) module: _string /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of struct (Library) queued. Dependencies: struct (stub), _struct
Analysis of os (Stub) queued. Dependencies: io (stub), sys (stub), posix (stub), os.path (stub)
Analysis of _string (CompiledBuiltin) queued. Dependencies:
Analysis of profile (Stub) on depth 3 completed in 3.72 ms.
Import: linecache /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/linecache.py
Analysis of warnings (Stub) queued. Dependencies: types (stub)
Import: tracemalloc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/tracemalloc.py
Import: traceback /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/traceback.py
Create built-in compiled (scraped) module: _warnings /Users/erwan/Documents/test_project/.venv/bin/python3
Create compiled (scraped): _struct /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_struct.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of _warnings (CompiledBuiltin) queued. Dependencies: _warnings (stub)
Analysis of posix (Stub) queued. Dependencies:
Analysis of weakref (Library) queued. Dependencies: weakref (stub), _weakref, _weakrefset, _collections_abc, sys, itertools, copy, atexit, gc
Create built-in compiled (scraped) module: _weakref /Users/erwan/Documents/test_project/.venv/bin/python3
Import: _weakrefset /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_weakrefset.py
Analysis of os.path (Stub) queued. Dependencies: posix (stub), sys (stub)
Import: _collections_abc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_collections_abc.py
Analysis of _warnings (Stub) queued. Dependencies:
Create built-in compiled (scraped) module: itertools /Users/erwan/Documents/test_project/.venv/bin/python3
Create built-in compiled (scraped) module: atexit /Users/erwan/Documents/test_project/.venv/bin/python3
Create built-in compiled (scraped) module: gc /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of io (Stub) queued. Dependencies: codecs (stub), mmap (stub), sys (stub), types (stub)
Analysis of gc (CompiledBuiltin) queued. Dependencies: gc (stub)
Analysis of gc (Stub) queued. Dependencies:
Analysis of os (Library) queued. Dependencies: os (stub), abc, sys, stat, posix, posixpath, ntpath, warnings, _collections_abc, subprocess, io
Analysis of atexit (CompiledBuiltin) queued. Dependencies: atexit (stub)
Import: stat /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/stat.py
Analysis of mmap (Stub) queued. Dependencies: sys (stub)
Create built-in compiled (scraped) module: posix /Users/erwan/Documents/test_project/.venv/bin/python3
Import: posixpath /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/posixpath.py
Analysis of traceback (Library) queued. Dependencies: traceback (stub), collections, itertools, linecache, sys
Import: ntpath /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/ntpath.py
Import: subprocess /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/subprocess.py
Import: io /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/io.py
Analysis of codecs (Stub) queued. Dependencies: sys (stub), abc (stub), types (stub)
Analysis of atexit (Stub) queued. Dependencies:
Analysis of _struct (Compiled) queued. Dependencies: struct
Analysis of io (Library) queued. Dependencies: io (stub), _io, abc
Analysis of string (Stub) queued. Dependencies:
Analysis of traceback (Stub) queued. Dependencies: types (stub), sys (stub)
Create built-in compiled (scraped) module: _io /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of stat (Stub) queued. Dependencies: sys (stub)
Analysis of collections (Library) queued. Dependencies: collections (stub), _collections_abc, operator, keyword, sys, heapq, _weakref, itertools, reprlib, _collections, warnings, copy
Analysis of stat (Library) queued. Dependencies: stat (stub), _stat
Analysis of itertools (CompiledBuiltin) queued. Dependencies: itertools (stub)
Import: operator /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/operator.py
Import: heapq /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/heapq.py
Create built-in compiled (scraped) module: _stat /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of tracemalloc (Library) queued. Dependencies: tracemalloc (stub), collections.abc, functools, fnmatch, linecache, os, pickle, _tracemalloc
Analysis of _stat (CompiledBuiltin) queued. Dependencies: _stat (stub)
Analysis of tracemalloc (Stub) queued. Dependencies: sys (stub)
Analysis of _io (CompiledBuiltin) queued. Dependencies: io
Analysis of _stat (Stub) queued. Dependencies:
Import: collections.abc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/collections/abc.py
Analysis of collections (Stub) queued. Dependencies: sys (stub), collections.abc (stub)
Import: fnmatch /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/fnmatch.py
Import: pickle /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pickle.py
Analysis of _collections (CompiledBuiltin) queued. Dependencies: collections
Create built-in compiled (scraped) module: _tracemalloc /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of _tracemalloc (CompiledBuiltin) queued. Dependencies: _tracemalloc (stub)
Analysis of _tracemalloc (Stub) queued. Dependencies:
Analysis of sys (Stub) queued. Dependencies: types (stub), importlib.abc (stub)
Analysis of heapq (Library) queued. Dependencies: heapq (stub), _heapq, doctest
Create compiled (scraped): _heapq /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_heapq.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of importlib.abc (Stub) queued. Dependencies: abc (stub), os (stub), sys (stub), types (stub), _importlib_modulespec (stub)
Import: doctest /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/doctest.py
Analysis of _importlib_modulespec (Stub) queued. Dependencies: abc (stub), sys (stub)
Analysis of runpy (Stub) queued. Dependencies:
Analysis of subprocess (Library) queued. Dependencies: subprocess (stub), sys, io, os, time, signal, warnings, errno, threading, _posixsubprocess, select, selectors
Import: signal /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/signal.py
Import: threading /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/threading.py
Analysis of sys (CompiledBuiltin) queued. Dependencies: sys (stub), _io, types
Create compiled (scraped): _posixsubprocess /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_posixsubprocess.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of re (Library) queued. Dependencies: re (stub), enum, sre_compile, sre_parse, functools, _locale, copyreg, sre_constants
Create compiled (scraped): select /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/select.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Import: selectors /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/selectors.py
Analysis of runpy (Library) queued. Dependencies: runpy (stub), sys, importlib, importlib.machinery, importlib.util, types, pkgutil, warnings
Analysis of optparse (Library) on depth 2 completed in 70.66 ms.
Import: sre_compile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/sre_compile.py
Analysis of optparse (Stub) queued. Dependencies: sys (stub)
Import: sre_parse /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/sre_parse.py
Analysis of sre_compile (Stub) queued. Dependencies: sys (stub), sre_parse (stub), sre_constants (stub)
Analysis of pickle (Library) queued. Dependencies: pickle (stub), types, copyreg, itertools, functools, sys, struct, re, io, codecs, _compat_pickle, _pickle, doctest, argparse, pprint
Import: importlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/init.py
Create built-in compiled (scraped) module: _locale /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of copy (Stub) queued. Dependencies:
Import: copyreg /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/copyreg.py
Import: importlib.machinery /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/machinery.py
Analysis of selectors (Library) queued. Dependencies: selectors (stub), abc, collections, collections.abc, math, select, sys
Import: sre_constants /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/sre_constants.py
Analysis of pickle (Stub) queued. Dependencies: sys (stub)
Analysis of copy (Library) queued. Dependencies: copy (stub), types, weakref, copyreg
Analysis of fnmatch (Library) queued. Dependencies: fnmatch (stub), os, posixpath, re, functools
Import: importlib.util /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/util.py
Import: pkgutil /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pkgutil.py
Import: codecs /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/codecs.py
Import: _compat_pickle /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_compat_pickle.py
Create compiled (scraped): _pickle /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_pickle.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Import: argparse /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/argparse.py
Import: pprint /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pprint.py
Create compiled (scraped): math /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of fnmatch (Stub) queued. Dependencies:
Analysis of math (Compiled) queued. Dependencies: math (stub)
Analysis of collections.abc (Library) queued. Dependencies: collections.abc (stub), _collections_abc
Analysis of pkgutil (Library) queued. Dependencies: pkgutil (stub), collections, functools, importlib, importlib.util, importlib.machinery, os, sys, types, warnings, marshal, inspect, zipimport
Analysis of collections.abc (Stub) queued. Dependencies: sys (stub), collections (stub)
Create built-in compiled (scraped) module: zipimport /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of math (Stub) queued. Dependencies: sys (stub)
Analysis of doctest (Library) queued. Dependencies: doctest (stub), future, difflib, inspect, linecache, os, pdb, re, sys, traceback, unittest, io, collections, argparse
Import: future /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/future.py
Analysis of zipimport (CompiledBuiltin) queued. Dependencies: zipimport (stub)
Import: difflib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/difflib.py
Analysis of linecache (Library) queued. Dependencies: linecache (stub), functools, sys, os, tokenize
Analysis of zipimport (Stub) queued. Dependencies: types (stub)
Import: pdb /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pdb.py
Analysis of linecache (Stub) queued. Dependencies: sys (stub)
Import: unittest /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/init.py
Analysis of pkgutil (Stub) queued. Dependencies: sys (stub), importlib.abc (stub)
Analysis of struct (Stub) queued. Dependencies: sys (stub), array (stub)
Analysis of posix (CompiledBuiltin) queued. Dependencies: posix (stub), os
Analysis of unittest (Library) queued. Dependencies: unittest (stub), unittest.result, unittest.case, unittest.suite, unittest.loader, unittest.main, unittest.runner, unittest.signals, os
Analysis of sre_constants (Library) queued. Dependencies: sre_constants (stub), _sre
Import: tokenize /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/tokenize.py
Analysis of textwrap (Stub) queued. Dependencies:
Import: unittest.result /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/result.py
Import: unittest.case /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py
Import: unittest.suite /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/suite.py
Analysis of pprint (Library) queued. Dependencies: pprint (stub), collections, re, sys, types, io, time
Import: unittest.loader /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/loader.py
Import: unittest.main /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/main.py
Analysis of textwrap (Library) queued. Dependencies: textwrap (stub), re
Analysis of pprint (Stub) queued. Dependencies: sys (stub)
Import: unittest.runner /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/runner.py
Analysis of unittest (Stub) queued. Dependencies: logging (stub), sys (stub), types (stub)
Import: unittest.signals /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/signals.py
Create built-in compiled (scraped) module: _sre /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of _sre (CompiledBuiltin) queued. Dependencies:
Analysis of types (Stub) queued. Dependencies: sys (stub), _importlib_modulespec (stub)
Analysis of runpy (Library) queued. Dependencies: runpy (stub), sys, importlib, importlib.machinery, importlib.util, types, pkgutil, warnings, io
Analysis of runpy (Library) on depth 2 completed in 75.15 ms.
Analysis of locale (Library) queued. Dependencies: locale (stub), sys, encodings, encodings.aliases, re, _collections_abc, functools, _locale, warnings, os, _bootlocale
Analysis of types (Library) queued. Dependencies: types (stub), sys, functools, _collections_abc
Import: encodings /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/encodings/init.py
Import: encodings.aliases /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/encodings/aliases.py
Import: _bootlocale /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_bootlocale.py
Analysis of locale (Stub) queued. Dependencies: decimal (stub), sys (stub)
Analysis of logging (Stub) queued. Dependencies: string (stub), time (stub), types (stub), sys (stub), threading (stub)
Analysis of _bootlocale (Library) queued. Dependencies: sys, _locale, locale
Analysis of importlib.util (Library) queued. Dependencies: importlib.util (stub), importlib, importlib.abc, importlib._bootstrap, importlib._bootstrap_external, contextlib, _imp, functools, sys, types, warnings
Analysis of gettext (Stub) queued. Dependencies:
Import: importlib.abc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/abc.py
Analysis of unittest.signals (Library) queued. Dependencies: signal, weakref, functools
Import: importlib._bootstrap /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/_bootstrap.py
Analysis of encodings.aliases (Library) queued. Dependencies:
Import: importlib._bootstrap_external /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/importlib/_bootstrap_external.py
Import: contextlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/contextlib.py
Create built-in compiled (scraped) module: _imp /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of unittest.runner (Library) queued. Dependencies: sys, time, warnings, unittest, unittest.result, unittest.signals
Analysis of encodings (Library) queued. Dependencies: encodings (stub), codecs, sys, encodings.aliases, encodings.mbcs
Analysis of _imp (CompiledBuiltin) queued. Dependencies: _imp (stub)
Analysis of encodings (Stub) queued. Dependencies: codecs (stub)
Analysis of inspect (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of _imp (Stub) queued. Dependencies: sys (stub), types (stub), importlib.machinery (stub)
Import: encodings.mbcs /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/encodings/mbcs.py
Analysis of encodings.mbcs (Library) queued. Dependencies: codecs
Analysis of unittest.main (Library) queued. Dependencies: sys, argparse, os, unittest, unittest.loader, unittest.runner, unittest.signals
Analysis of pdb (Library) queued. Dependencies: pdb (stub), os, re, sys, cmd, bdb, dis, code, glob, pprint, signal, inspect, traceback, linecache, readline, shlex, runpy, pydoc, getopt
Import: bdb /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/bdb.py
Import: dis /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/dis.py
Import: code /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/code.py
Import: glob /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/glob.py
Import: shlex /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/shlex.py
Import: pydoc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pydoc.py
Analysis of contextlib (Library) queued. Dependencies: contextlib (stub), abc, sys, _collections_abc, collections, functools
Analysis of argparse (Library) queued. Dependencies: argparse (stub), os, re, sys, gettext, copy, textwrap, warnings
Import: getopt /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/getopt.py
Analysis of getopt (Library) queued. Dependencies: getopt (stub), os, gettext, sys
Analysis of contextlib (Stub) queued. Dependencies: types (stub), sys (stub)
Analysis of unittest.loader (Library) queued. Dependencies: os, re, sys, traceback, types, functools, warnings, fnmatch, unittest, unittest.case, unittest.suite, unittest.util
Analysis of getopt (Stub) queued. Dependencies:
Import: unittest.util /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/unittest/util.py
Analysis of sre_compile (Library) queued. Dependencies: sre_compile (stub), _sre, sre_parse, sre_constants, sys
Analysis of sre_parse (Stub) queued. Dependencies: sre_constants (stub)
Analysis of unittest.util (Library) queued. Dependencies: collections, os
Analysis of unittest.suite (Library) queued. Dependencies: sys, unittest, unittest.case, unittest.util
Analysis of argparse (Stub) queued. Dependencies: sys (stub)
Analysis of keyword (Stub) queued. Dependencies:
Analysis of _locale (CompiledBuiltin) queued. Dependencies: locale
Analysis of _pickle (Compiled) queued. Dependencies:
Analysis of copyreg (Library) queued. Dependencies:
Analysis of sre_constants (Stub) queued. Dependencies:
Analysis of _compat_pickle (Library) queued. Dependencies:
Analysis of posixpath (Stub) queued. Dependencies: sys (stub)
Analysis of tokenize (Stub) queued. Dependencies: sys (stub), token (stub), os (stub)
Analysis of importlib._bootstrap_external (Library) queued. Dependencies: tokenize
Analysis of token (Stub) queued. Dependencies: sys (stub)
Analysis of sre_parse (Library) queued. Dependencies: sre_parse (stub), sre_constants, warnings
Analysis of codecs (Library) queued. Dependencies: codecs (stub), sys, _codecs, encodings
Analysis of unittest.case (Library) queued. Dependencies: sys, functools, difflib, logging, pprint, re, warnings, collections, contextlib, traceback, unittest, unittest.result, unittest.util
Create built-in compiled (scraped) module: _codecs /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of inspect (Library) queued. Dependencies: inspect (stub), abc, dis, collections, collections.abc, enum, importlib, importlib.machinery, itertools, linecache, os, re, sys, tokenize, token, types, warnings, functools, operator, ast, argparse
Analysis of _codecs (CompiledBuiltin) queued. Dependencies: _codecs (stub)
Import: logging /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/logging/init.py
Analysis of posixpath (Library) queued. Dependencies: posixpath (stub), os, sys, stat, genericpath, pwd, re
Analysis of unittest.result (Library) queued. Dependencies: io, sys, traceback, unittest, unittest.util, functools
Analysis of readline (Stub) queued. Dependencies: sys (stub)
Analysis of readline (Compiled) queued. Dependencies: readline (stub)
Analysis of array (Stub) queued. Dependencies: sys (stub)
Import: token /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/token.py
Import: ast /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/ast.py
Analysis of marshal (CompiledBuiltin) on depth 2 completed in 0.39 ms.
Analysis of _lsprof (Compiled) on depth 2 completed in 1.31 ms.
Analysis of importlib._bootstrap (Library) queued. Dependencies:
Analysis of cProfile (Stub) on depth 2 completed in 1.57 ms.
Analysis of ntpath (Stub) queued. Dependencies: sys (stub)
Analysis of tokenize (Library) queued. Dependencies: tokenize (stub), codecs, collections, io, itertools, re, sys, token, argparse
Analysis of ast (Library) queued. Dependencies: ast (stub), _ast, inspect, collections
Analysis of keyword (Library) queued. Dependencies: keyword (stub), sys, re
Analysis of ast (Stub) queued. Dependencies: _ast (stub)
Analysis of _functools (CompiledBuiltin) queued. Dependencies: functools
Analysis of importlib.abc (Library) queued. Dependencies: importlib.abc (stub), importlib, importlib._bootstrap, importlib._bootstrap_external, importlib.machinery, abc, warnings
Analysis of functools (Stub) queued. Dependencies: sys (stub)
Import: genericpath /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/genericpath.py
Analysis of token (Library) queued. Dependencies: token (stub), re, sys
Analysis of pstats (Stub) on depth 3 completed in 3.34 ms.
Create built-in compiled (scraped) module: pwd /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of importlib (Stub) queued. Dependencies: importlib.util (stub), importlib.abc (stub), sys (stub), types (stub)
Create built-in compiled (scraped) module: _ast /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of decimal (Stub) queued. Dependencies:
Analysis of importlib (Library) queued. Dependencies: importlib (stub), _imp, sys, importlib._bootstrap, importlib._bootstrap_external, types, warnings
Analysis of importlib.util (Stub) queued. Dependencies: importlib (stub), importlib.abc (stub), importlib.machinery (stub), sys (stub), types (stub)
Analysis of importlib.machinery (Library) queued. Dependencies: importlib.machinery (stub), _imp, importlib._bootstrap, importlib._bootstrap_external
Analysis of os (Library) queued. Dependencies: os (stub), abc, sys, stat, posix, posixpath, ntpath, warnings, _collections_abc, subprocess, io
Analysis of importlib.machinery (Stub) queued. Dependencies: importlib (stub), importlib.abc (stub), sys (stub), types (stub), _importlib_modulespec (stub)
Analysis of pydoc (Library) queued. Dependencies: importlib, importlib._bootstrap, importlib._bootstrap_external, importlib.machinery, importlib.util, inspect, io, os, pkgutil, platform, re, sys, time, tokenize, urllib, urllib.parse, warnings, collections, reprlib, traceback, tempfile, subprocess, tty, pydoc_data, pydoc_data.topics, textwrap, http, http.server, email, email.message, select, threading, webbrowser, getopt
Analysis of ntpath (Library) queued. Dependencies: ntpath (stub), os, sys, stat, genericpath, string
Import: platform /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/platform.py
Import: urllib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/urllib/init.py
Analysis of subprocess (Stub) queued. Dependencies: sys (stub), types (stub)
Import: urllib.parse /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/urllib/parse.py
Import: tempfile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/tempfile.py
Import: tty /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/tty.py
Analysis of shlex (Library) queued. Dependencies: shlex (stub), os, re, sys, collections, io
Import: pydoc_data /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/init.py
Analysis of genericpath (Library) queued. Dependencies: os, stat
Import: pydoc_data.topics /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/topics.py
Analysis of shlex (Stub) queued. Dependencies: sys (stub)
Analysis of pwd (Stub) queued. Dependencies:
Analysis of glob (Library) queued. Dependencies: glob (stub), os, re, fnmatch
Analysis of logging (Library) queued. Dependencies: logging (stub), sys, os, time, io, traceback, warnings, weakref, collections, collections.abc, string, threading, pickle, atexit
Analysis of _ast (CompiledBuiltin) queued. Dependencies: _ast (stub)
Import: http /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/http/init.py
Analysis of glob (Stub) queued. Dependencies: sys (stub)
Import: http.server /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/http/server.py
Import: email /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/init.py
Import: email.message /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/message.py
Import: webbrowser /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/webbrowser.py
Analysis of _codecs (Stub) queued. Dependencies: sys (stub), codecs (stub)
Analysis of code (Library) queued. Dependencies: code (stub), sys, traceback, codeop, readline, argparse
Analysis of selectors (Stub) queued. Dependencies: abc (stub), socket (stub)
Analysis of _ast (Stub) queued. Dependencies: sys (stub)
Analysis of abc (Library) queued. Dependencies: abc (stub), _abc, _py_abc
Analysis of pwd (CompiledBuiltin) queued. Dependencies: pwd (stub)
Analysis of code (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of select (Compiled) queued. Dependencies: select (stub)
Import: codeop /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/codeop.py
Analysis of reprlib (Stub) queued. Dependencies: array (stub)
Analysis of reprlib (Library) queued. Dependencies: reprlib (stub), itertools, _thread
Create built-in compiled (scraped) module: _abc /Users/erwan/Documents/test_project/.venv/bin/python3
Import: _py_abc /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_py_abc.py
Analysis of _weakref (Stub) queued. Dependencies: sys (stub)
Analysis of select (Stub) queued. Dependencies: sys (stub)
Analysis of _weakref (CompiledBuiltin) queued. Dependencies: _weakref (stub)
Analysis of _posixsubprocess (Compiled) queued. Dependencies: _posixsubprocess (stub)
Analysis of sys (CompiledBuiltin) on depth 2 completed in 68.57 ms.
Analysis of weakref (Stub) queued. Dependencies: sys (stub), types (stub), _weakref (stub), _weakrefset (stub)
Analysis of _posixsubprocess (Stub) queued. Dependencies:
Analysis of _weakrefset (Stub) queued. Dependencies:
Analysis of _py_abc (Library) queued. Dependencies: _weakrefset
Analysis of webbrowser (Library) queued. Dependencies: webbrowser (stub), os, shlex, shutil, sys, subprocess, threading, copy, glob, pwd, socket, tempfile, getopt
Analysis of _abc (CompiledBuiltin) queued. Dependencies:
Analysis of os (Library) on depth 2 completed in 88.6 ms.
Analysis of _weakrefset (Library) queued. Dependencies: _weakrefset (stub), _weakref
Analysis of webbrowser (Stub) queued. Dependencies: sys (stub)
Import: shutil /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/shutil.py
Analysis of itertools (Stub) queued. Dependencies:
Import: socket /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/socket.py
Analysis of socket (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of signal (Stub) queued. Dependencies: sys (stub), enum (stub), types (stub)
Analysis of _collections_abc (Library) queued. Dependencies: abc, sys
Analysis of codeop (Library) queued. Dependencies: codeop (stub), future
Analysis of threading (Library) queued. Dependencies: threading (stub), os, sys, _thread, time, traceback, _weakrefset, itertools, _collections, collections, _threading_local
Analysis of codeop (Stub) queued. Dependencies: types (stub)
Analysis of socket (Library) queued. Dependencies: socket (stub), _socket, os, sys, io, selectors, enum, errno
Import: _threading_local /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_threading_local.py
Analysis of threading (Stub) queued. Dependencies: types (stub), sys (stub)
Analysis of operator (Stub) queued. Dependencies: sys (stub)
Analysis of _threading_local (Library) queued. Dependencies: _threading_local (stub), weakref, contextlib, threading
Analysis of signal (Library) queued. Dependencies: signal (stub), _signal, functools, enum
Analysis of operator (Library) queued. Dependencies: operator (stub), functools, _operator
Analysis of heapq (Stub) queued. Dependencies: sys (stub)
Analysis of _heapq (Stub) queued. Dependencies:
Analysis of _threading_local (Stub) queued. Dependencies: weakref (stub)
Analysis of _heapq (Compiled) queued. Dependencies: _heapq (stub)
Analysis of platform (Stub) queued. Dependencies: os (stub)
Analysis of future (Stub) queued. Dependencies: sys (stub)
Analysis of pstats (Library) on depth 2 completed in 50.42 ms.
Create compiled (scraped): _socket /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_socket.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of doctest (Stub) queued. Dependencies: sys (stub), types (stub), unittest (stub)
Create built-in compiled (scraped) module: _signal /Users/erwan/Documents/test_project/.venv/bin/python3
Create built-in compiled (scraped) module: _operator /Users/erwan/Documents/test_project/.venv/bin/python3
Analysis of dataclasses (Library) on depth 1 completed in 54.49 ms.
Analysis of _operator (CompiledBuiltin) queued. Dependencies: _operator (stub), operator
Analysis of future (Library) queued. Dependencies: future (stub)
Analysis of dis (Library) queued. Dependencies: dis (stub), sys, types, collections, io, opcode, argparse
Analysis of _operator (Stub) queued. Dependencies: sys (stub), operator (stub)
Analysis of _socket (Compiled) queued. Dependencies:
Analysis of _signal (CompiledBuiltin) queued. Dependencies: signal
Analysis of dis (Stub) queued. Dependencies: sys (stub), types (stub), opcode (stub)
Analysis of pdb (Stub) queued. Dependencies: sys (stub)
Analysis of difflib (Stub) queued. Dependencies: sys (stub)
Import: opcode /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/opcode.py
Analysis of profile (Library) queued. Dependencies: profile (stub), sys, time, marshal, pstats, os, optparse, io
Analysis of opcode (Library) queued. Dependencies: opcode (stub), _opcode
Analysis of profile (Library) on depth 2 completed in 15.02 ms.
Create compiled (scraped): _opcode /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_opcode.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of _opcode (Compiled) queued. Dependencies:
Analysis of shutil (Library) queued. Dependencies: shutil (stub), os, sys, stat, fnmatch, collections, errno, zlib, bz2, lzma, pwd, grp, tarfile, zipfile
Analysis of opcode (Stub) queued. Dependencies: sys (stub)
Analysis of bdb (Library) queued. Dependencies: fnmatch, sys, os, inspect, linecache, reprlib
Analysis of cProfile (Library) queued. Dependencies: cProfile (stub), _lsprof, profile, pstats, marshal, os, sys, runpy, optparse, io
Analysis of shutil (Stub) queued. Dependencies: os (stub), sys (stub)
Analysis of urllib (Stub) queued. Dependencies:
Create compiled (scraped): zlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/zlib.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Import: bz2 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/bz2.py
Import: lzma /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lzma.py
Analysis of urllib (Library) queued. Dependencies: urllib (stub)
Create compiled (scraped): grp /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/grp.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of difflib (Library) queued. Dependencies: difflib (stub), heapq, collections, re, doctest
Import: tarfile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/tarfile.py
Import: zipfile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/zipfile.py
Analysis of cProfile (Library) on depth 1 completed in 18.28 ms.
Analysis of urllib.parse (Stub) queued. Dependencies: sys (stub)
Analysis version 34 has been completed in 402.74 ms with 14 entries analyzed and 1 entries skipped.
Analysis version 387 of 243 entries has started.
Analysis of tempfile (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of string (Stub) on depth 5 completed in 8.55 ms.
Analysis of _string (CompiledBuiltin) on depth 5 completed in 0.1 ms.
Analysis of tty (Stub) queued. Dependencies:
Analysis of platform (Library) queued. Dependencies: platform (stub), collections, sys, os, re, subprocess, warnings, plistlib, socket, struct
Analysis of tty (Library) queued. Dependencies: tty (stub), termios
Analysis of pydoc_data (Library) queued. Dependencies:
Analysis of posix (Stub) on depth 4 completed in 1.14 ms.
Analysis of _warnings (Stub) on depth 5 completed in 0.55 ms.
Analysis of tempfile (Library) queued. Dependencies: tempfile (stub), functools, warnings, io, os, shutil, errno, random, weakref, _thread
Analysis of gc (Stub) on depth 5 completed in 0.92 ms.
Analysis of urllib.parse (Library) queued. Dependencies: urllib.parse (stub), re, sys, collections
Analysis of http (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of atexit (Stub) on depth 5 completed in 7.66 ms.
Analysis of http (Library) queued. Dependencies: http (stub), enum
Analysis of cProfile (Stub) on depth 2 completed in 1.03 ms.
Import: plistlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/plistlib.py
Create compiled (scraped): termios /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/termios.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of http.server (Stub) queued. Dependencies: sys (stub), socketserver (stub), email (stub), email.message (stub)
Import: random /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/random.py
Analysis of plistlib (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of _lsprof (Compiled) on depth 2 completed in 1.08 ms.
Analysis of email (Stub) queued. Dependencies: sys (stub), email.message (stub), email.policy (stub)
Analysis of itertools (Stub) on depth 4 completed in 5.04 ms.
Analysis of runpy (Stub) on depth 3 completed in 0.69 ms.
Analysis of email.policy (Stub) queued. Dependencies: abc (stub), sys (stub), email.message (stub), email.errors (stub), email.header (stub), email.contentmanager (stub)
Analysis of copyreg (Library) on depth 3 completed in 1.71 ms.
Analysis of random (Library) queued. Dependencies: random (stub), warnings, types, math, os, _collections_abc, hashlib, itertools, bisect, _random, time
Analysis of email.contentmanager (Stub) queued. Dependencies: email.message (stub)
Analysis of zipfile (Library) queued. Dependencies: zipfile (stub), io, os, importlib, importlib.util, sys, time, stat, shutil, struct, binascii, threading, zlib, bz2, lzma, warnings, py_compile, argparse
Analysis of email.header (Stub) queued. Dependencies: email.charset (stub)
Analysis of random (Stub) queued. Dependencies: _random (stub), sys (stub)
Analysis of email.errors (Stub) queued. Dependencies:
Analysis of http.server (Library) queued. Dependencies: http.server (stub), copy, datetime, email, email.utils, html, http, http.client, io, mimetypes, os, posixpath, select, shutil, socket, socketserver, sys, time, urllib, urllib.parse, functools, pwd, base64, binascii, subprocess, argparse
Analysis of zipfile (Stub) queued. Dependencies: types (stub), os (stub), sys (stub)
Analysis of termios (Compiled) queued. Dependencies: termios (stub)
Analysis of email (Library) queued. Dependencies: email (stub), email.parser
Analysis of socketserver (Stub) queued. Dependencies: socket (stub), sys (stub), types (stub)
Analysis of termios (Stub) queued. Dependencies:
Analysis of sre_constants (Stub) on depth 4 completed in 13.3 ms.
Import: hashlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/hashlib.py
Analysis of profile (Stub) on depth 3 completed in 9.15 ms.
Analysis of marshal (Stub) on depth 3 completed in 0.68 ms.
Analysis of _compat_pickle (Library) on depth 6 completed in 1.22 ms.
Import: bisect /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/bisect.py
Analysis of _thread (Stub) on depth 3 completed in 0.39 ms.
Analysis of fnmatch (Stub) on depth 6 completed in 0.29 ms.
Create compiled (scraped): _random /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_random.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of _sre (CompiledBuiltin) on depth 4 completed in 0.18 ms.
Create compiled (scraped): binascii /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/binascii.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of hashlib (Stub) queued. Dependencies: sys (stub)
Import: py_compile /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/py_compile.py
Import: datetime /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/datetime.py
Analysis of textwrap (Stub) on depth 4 completed in 1.17 ms.
Import: email.utils /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/utils.py
Import: html /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/html/init.py
Import: http.client /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/http/client.py
Analysis of email.message (Stub) queued. Dependencies: sys (stub), email.charset (stub), email.errors (stub), email.header (stub), email.policy (stub), email.contentmanager (stub)
Import: mimetypes /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/mimetypes.py
Import: socketserver /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/socketserver.py
Import: base64 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/base64.py
Analysis of abc (Stub) on depth 4 completed in 0.84 ms.
Import: email.parser /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/parser.py
Analysis of encodings.aliases (Library) on depth 5 completed in 8.94 ms.
Analysis of email.parser (Library) queued. Dependencies: email.parser (stub), io, email.feedparser, email._policybase
Analysis of plistlib (Library) queued. Dependencies: plistlib (stub), binascii, codecs, contextlib, datetime, enum, io, itertools, os, re, struct, warnings, xml.parsers.expat
Analysis of hashlib (Library) queued. Dependencies: hashlib (stub), _sha1, _md5, _sha256, _sha512, _blake2, _sha3, _hashlib, logging
Analysis of pydoc_data.topics (Library) queued. Dependencies:
Analysis of bisect (Stub) queued. Dependencies:
Analysis of email.parser (Stub) queued. Dependencies: email (stub), email.feedparser (stub), email.message (stub), email.policy (stub)
Analysis of bisect (Library) queued. Dependencies: bisect (stub), _bisect
Import: email.feedparser /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/feedparser.py
Analysis of cmd (Stub) on depth 4 completed in 1.75 ms.
Import: email._policybase /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/_policybase.py
Import: xml.parsers.expat /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/expat.py
Create compiled (scraped): _sha1 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha1.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of gettext (Stub) on depth 4 completed in 0.98 ms.
Create compiled (scraped): _md5 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_md5.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of email.feedparser (Stub) queued. Dependencies: sys (stub), email.message (stub), email.policy (stub)
Create compiled (scraped): _sha256 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha256.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Create compiled (scraped): _sha512 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha512.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Create compiled (scraped): _blake2 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_blake2.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of tarfile (Library) queued. Dependencies: tarfile (stub), sys, os, io, shutil, stat, time, struct, copy, re, pwd, grp, warnings, zlib, bz2, lzma, gzip, argparse
Create compiled (scraped): _sha3 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha3.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Create compiled (scraped): _hashlib /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_hashlib.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Create compiled (scraped): _bisect /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bisect.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of _bisect (Compiled) queued. Dependencies: _bisect (stub)
Analysis of _stat (Stub) on depth 5 completed in 2.27 ms.
Analysis of base64 (Library) queued. Dependencies: base64 (stub), re, struct, binascii, warnings, sys, getopt
Analysis of email.message (Library) queued. Dependencies: email.message (stub), re, uu, quopri, io, email, email.utils, email.errors, email._policybase, email.charset, email._encoded_words, email.generator, email.iterators, email.policy
Analysis of tarfile (Stub) queued. Dependencies: os (stub), sys (stub), types (stub)
Analysis of _bisect (Stub) queued. Dependencies:
Analysis of base64 (Stub) queued. Dependencies: sys (stub)
Analysis of _hashlib (Compiled) queued. Dependencies:
Analysis of zlib (Stub) queued. Dependencies: sys (stub)
Analysis of grp (Compiled) queued. Dependencies: grp (stub)
Analysis of _tracemalloc (Stub) on depth 6 completed in 0.36 ms.
Import: gzip /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/gzip.py
Analysis of _sha3 (Compiled) queued. Dependencies:
Analysis of zlib (Compiled) queued. Dependencies: zlib (stub)
Analysis of email.feedparser (Library) queued. Dependencies: email.feedparser (stub), re, email, email.errors, email._policybase, collections, io, email.message
Import: uu /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/uu.py
Analysis of _random (Stub) queued. Dependencies: sys (stub)
Import: quopri /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/quopri.py
Import: email.errors /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/errors.py
Analysis of _random (Compiled) queued. Dependencies: _random (stub)
Import: email.charset /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/charset.py
Import: email._encoded_words /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/_encoded_words.py
Analysis of _blake2 (Compiled) queued. Dependencies:
Import: email.generator /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/generator.py
Analysis of _sha512 (Compiled) queued. Dependencies:
Import: email.iterators /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/iterators.py
Analysis of email._policybase (Library) queued. Dependencies: abc, email, email.header, email.charset, email.utils
Import: email.policy /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/policy.py
Analysis of _sha256 (Compiled) queued. Dependencies:
Analysis of socketserver (Library) queued. Dependencies: socketserver (stub), socket, selectors, os, sys, threading, io, time, traceback
Analysis of xml.parsers.expat (Stub) queued. Dependencies: pyexpat (stub), pyexpat.errors (stub), pyexpat.model (stub)
Analysis of _md5 (Compiled) queued. Dependencies:
Analysis of xml.parsers.expat (Library) queued. Dependencies: xml.parsers.expat (stub), sys, pyexpat
Analysis of _sha1 (Compiled) queued. Dependencies:
Analysis of copy (Stub) on depth 3 completed in 0.41 ms.
Import: email.header /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/header.py
Analysis of email.policy (Library) queued. Dependencies: email.policy (stub), re, email._policybase, email.utils, email.headerregistry, email.contentmanager, email.message
Analysis of _pickle (Compiled) on depth 6 completed in 2.38 ms.
Analysis of email.iterators (Library) queued. Dependencies: email.iterators (stub), sys, io
Create compiled (scraped): pyexpat /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/pyexpat.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of email.iterators (Stub) queued. Dependencies: email.message (stub)
Analysis of pyexpat (Compiled) queued. Dependencies: pyexpat (stub)
Analysis of mimetypes (Library) queued. Dependencies: mimetypes (stub), os, sys, posixpath, urllib, urllib.parse, getopt
Import: email.headerregistry /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/headerregistry.py
Analysis of importlib._bootstrap (Library) on depth 4 completed in 66.46 ms.
Import: email.contentmanager /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/contentmanager.py
Analysis of email.generator (Library) queued. Dependencies: email.generator (stub), re, sys, time, random, copy, io, email.utils
Analysis of pyexpat.model (Stub) queued. Dependencies:
Analysis of email.generator (Stub) queued. Dependencies: email.message (stub), email.policy (stub)
Analysis of pyexpat.errors (Stub) queued. Dependencies: sys (stub)
Analysis of email._encoded_words (Library) queued. Dependencies: re, base64, binascii, functools, string, email, email.errors
Analysis of email.contentmanager (Library) queued. Dependencies: email.contentmanager (stub), binascii, email, email.charset, email.message, email.errors, email.quoprimime
Analysis of email.charset (Library) queued. Dependencies: email.charset (stub), functools, email, email.base64mime, email.quoprimime, email.errors, email.encoders
Import: email.quoprimime /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/quoprimime.py
Analysis of pyexpat (Stub) queued. Dependencies: pyexpat.errors (stub), pyexpat.model (stub)
Analysis of email.headerregistry (Library) queued. Dependencies: email.headerregistry (stub), types, email, email.utils, email.errors, email._header_value_parser
Import: email.base64mime /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/base64mime.py
Import: email.encoders /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/encoders.py
Analysis of email.headerregistry (Stub) queued. Dependencies: datetime (stub), email.errors (stub), email.policy (stub)
Analysis of email.encoders (Library) queued. Dependencies: email.encoders (stub), base64, quopri
Analysis of mimetypes (Stub) queued. Dependencies: sys (stub)
Analysis of tempfile (Library) on depth 8 completed in 22.49 ms.
Import: email._header_value_parser /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/_header_value_parser.py
Analysis of decimal (Stub) on depth 6 completed in 51.88 ms.
Analysis of email.encoders (Stub) queued. Dependencies: email.message (stub)
Analysis of tty (Library) on depth 8 completed in 16.32 ms.
Analysis of pydoc_data.topics (Library) on depth 8 completed in 0.22 ms.
Analysis of email.header (Library) queued. Dependencies: email.header (stub), re, binascii, email, email.quoprimime, email.base64mime, email.errors, email.charset
Analysis of http (Library) on depth 8 completed in 0.66 ms.
Analysis of email.base64mime (Library) queued. Dependencies: base64, binascii
Analysis of bz2 (Stub) queued. Dependencies: io (stub), sys (stub), os (stub)
Analysis of email.quoprimime (Library) queued. Dependencies: re, string
Analysis of getopt (Stub) on depth 8 completed in 0.57 ms.
Analysis of difflib (Library) on depth 6 completed in 73.33 ms.
Analysis of email.errors (Library) queued. Dependencies: email.errors (stub)
Analysis of lzma (Stub) queued. Dependencies: io (stub), sys (stub), os (stub)
Analysis of bz2 (Library) queued. Dependencies: bz2 (stub), io, os, warnings, _compression, threading, _bz2
Analysis of keyword (Stub) on depth 3 completed in 0.3 ms.
Analysis of binascii (Stub) queued. Dependencies: sys (stub)
Analysis of quopri (Library) queued. Dependencies: quopri (stub), binascii, io, sys, getopt
Analysis of binascii (Compiled) queued. Dependencies: binascii (stub)
Analysis of quopri (Stub) queued. Dependencies:
Analysis of grp (Stub) queued. Dependencies:
Import: _compression /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_compression.py
Analysis of uu (Library) queued. Dependencies: uu (stub), binascii, os, sys, optparse
Create compiled (scraped): _bz2 /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bz2.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of uu (Stub) queued. Dependencies: sys (stub)
Analysis of bdb (Library) on depth 7 completed in 34.82 ms.
Analysis of _bz2 (Compiled) queued. Dependencies:
Analysis of gzip (Stub) queued. Dependencies: os.path (stub), _compression (stub), zlib (stub)
Analysis of lzma (Library) queued. Dependencies: lzma (stub), io, os, _lzma, _compression
Analysis of _compression (Stub) queued. Dependencies: io (stub)
Analysis of _compression (Library) queued. Dependencies: _compression (stub), io
Analysis of py_compile (Stub) queued. Dependencies: sys (stub)
Create compiled (scraped): _lzma /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_lzma.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of py_compile (Library) queued. Dependencies: py_compile (stub), enum, importlib, importlib._bootstrap_external, importlib.machinery, importlib.util, os, sys, traceback
Analysis of urllib (Library) on depth 8 completed in 0.03 ms.
Analysis of platform (Library) queued. Dependencies: platform (stub), collections, sys, os, re, subprocess, warnings, plistlib, socket, struct, io
Analysis of _lzma (Compiled) queued. Dependencies:
Analysis of email._header_value_parser (Library) queued. Dependencies: re, urllib, string, collections, operator, email, email._encoded_words, email.errors, email.utils
Analysis of gzip (Library) queued. Dependencies: gzip (stub), struct, sys, time, os, zlib, io, _compression, warnings, errno
Analysis of email.charset (Stub) queued. Dependencies:
Analysis of http.server (Library) queued. Dependencies: http.server (stub), copy, datetime, email, email.utils, html, http, http.client, io, mimetypes, os, posixpath, select, shutil, socket, socketserver, sys, time, urllib, urllib.parse, functools, pwd, base64, binascii, subprocess, argparse
Analysis of pydoc_data (Library) on depth 8 completed in 0.02 ms.
Analysis of datetime (Stub) queued. Dependencies: sys (stub), time (stub)
Analysis of email.utils (Stub) queued. Dependencies: email.charset (stub), datetime (stub)
Analysis of email.utils (Library) queued. Dependencies: email.utils (stub), os, re, time, random, socket, datetime, urllib, urllib.parse, email._parseaddr, email.charset
Analysis of http.client (Library) queued. Dependencies: http.client (stub), email, email.parser, email.message, http, io, re, socket, collections, collections.abc, urllib.parse, ssl, warnings
Analysis of html (Stub) queued. Dependencies:
Import: email._parseaddr /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/email/_parseaddr.py
Analysis of http.client (Stub) queued. Dependencies: email (stub), email.message (stub), io (stub), socket (stub), sys (stub), ssl (stub), types (stub)
Import: ssl /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/ssl.py
Analysis of html (Library) queued. Dependencies: html (stub), re, html.entities
Analysis of platform (Library) on depth 8 completed in 56.96 ms.
Import: html.entities /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/html/entities.py
Analysis of email._parseaddr (Library) queued. Dependencies: time, calendar
Analysis of datetime (Library) queued. Dependencies: datetime (stub), time, math, sys, _strptime, _datetime
Import: calendar /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/calendar.py
Analysis of http.server (Library) on depth 8 completed in 84.51 ms.
Analysis of ssl (Library) queued. Dependencies: ssl (stub), sys, os, collections, enum, _ssl, socket, base64, errno, warnings, time, calendar
Import: _strptime /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/_strptime.py
Analysis of ssl (Stub) queued. Dependencies: socket (stub), sys (stub)
Create compiled (scraped): _datetime /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_datetime.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Create compiled (scraped): _ssl /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of email (Library) on depth 8 completed in 0.94 ms.
Analysis of calendar (Library) queued. Dependencies: calendar (stub), sys, datetime, locale, itertools, argparse
Analysis of urllib.parse (Library) on depth 8 completed in 86.26 ms.
Analysis of _socket (Compiled) on depth 10 completed in 37.04 ms.
Analysis of _warnings (CompiledBuiltin) on depth 4 completed in 1.15 ms.
Analysis of _strptime (Library) queued. Dependencies: time, locale, calendar, re, datetime, _thread
Analysis of gc (CompiledBuiltin) on depth 4 completed in 2.16 ms.
Analysis of calendar (Stub) queued. Dependencies: datetime (stub), sys (stub), time (stub)
Analysis of _ssl (Compiled) queued. Dependencies:
Analysis of atexit (CompiledBuiltin) on depth 4 completed in 7.99 ms.
Analysis of html.entities (Stub) queued. Dependencies:
Analysis of _datetime (Compiled) queued. Dependencies: datetime
Analysis of html.entities (Library) queued. Dependencies: html.entities (stub)
Analysis of _abc (CompiledBuiltin) on depth 4 completed in 0.22 ms.
Analysis of pwd (Stub) on depth 5 completed in 0.51 ms.
Analysis of _posixsubprocess (Stub) on depth 5 completed in 0.48 ms.
Analysis of _heapq (Stub) on depth 6 completed in 0.52 ms.
Analysis of opcode (Library) on depth 4 completed in 1.14 ms.
Analysis of shutil (Library) queued. Dependencies: shutil (stub), os, sys, stat, fnmatch, collections, errno, zlib, bz2, lzma, pwd, grp, tarfile, zipfile, io
Analysis of itertools (CompiledBuiltin) on depth 3 completed in 12.48 ms.
Analysis of _tracemalloc (CompiledBuiltin) on depth 5 completed in 0.47 ms.
Analysis of pwd (CompiledBuiltin) on depth 4 completed in 1.55 ms.
Analysis of _posixsubprocess (Compiled) on depth 4 completed in 0.15 ms.
Analysis of _thread (CompiledBuiltin) on depth 2 completed in 2.73 ms.
Analysis of _heapq (Compiled) on depth 5 completed in 0.43 ms.
Analysis of _weakrefset (Stub) on depth 5 completed in 16.44 ms.
Analysis of sre_parse (Stub) on depth 4 completed in 13.38 ms.
Analysis of sre_constants (Library) queued. Dependencies: sre_constants (stub), _sre, io
Analysis of _stat (CompiledBuiltin) on depth 4 completed in 23.39 ms.
Analysis of sre_constants (Library) on depth 3 completed in 24.59 ms.
Analysis of email.message (Library) on depth 8 completed in 53.07 ms.
Analysis of shutil (Library) on depth 9 completed in 40.24 ms.
Analysis of modules loop on depth 3 in 108.89 ms:
Analysis of stat (Stub) on depth 4 completed in 1 ms.
Analysis of pickle (Stub) on depth 6 completed in 2.1 ms.
Analysis of enum (Stub) on depth 4 completed in 2.72 ms.
Analysis of linecache (Stub) on depth 4 completed in 6.24 ms.
Analysis of tracemalloc (Stub) on depth 5 completed in 7.9 ms.
Analysis of pprint (Stub) on depth 7 completed in 0.68 ms.
Analysis of heapq (Stub) on depth 5 completed in 1.05 ms.
Analysis of errno (Stub) on depth 5 completed in 9.67 ms.
Analysis of sre_compile (Stub) on depth 4 completed in 0.45 ms.
Analysis of functools (Stub) on depth 3 completed in 10.34 ms.
Analysis of pdb (Stub) on depth 7 completed in 0.47 ms.
Analysis of locale (Stub) on depth 5 completed in 2.53 ms.
Analysis of array (Stub) on depth 5 completed in 6.53 ms.
Analysis of optparse (Stub) on depth 3 completed in 16.7 ms.
Analysis of math (Stub) on depth 6 completed in 9.56 ms.
Analysis of argparse (Stub) on depth 4 completed in 10.65 ms.
Analysis of readline (Stub) on depth 4 completed in 1.35 ms.
Analysis of _weakref (Stub) on depth 5 completed in 1.63 ms.
Analysis of ntpath (Stub) on depth 4 completed in 1.39 ms.
Analysis of token (Stub) on depth 4 completed in 2.11 ms.
Analysis of posixpath (Stub) on depth 4 completed in 2.3 ms.
Analysis of shlex (Stub) on depth 8 completed in 1.97 ms.
Analysis of glob (Stub) on depth 8 completed in 1.83 ms.
Analysis of select (Stub) on depth 5 completed in 2.54 ms.
Analysis of operator (Stub) on depth 4 completed in 8.53 ms.
Analysis of future (Stub) on depth 7 completed in 0.58 ms.
Analysis of zipimport (Stub) on depth 5 completed in 0.84 ms.
Analysis of warnings (Stub) on depth 4 completed in 1.31 ms.
Analysis of time (Stub) on depth 4 completed in 2.19 ms.
Analysis of webbrowser (Stub) on depth 9 completed in 11.54 ms.
Analysis of traceback (Stub) on depth 5 completed in 3.72 ms.
Analysis of subprocess (Stub) on depth 4 completed in 5.48 ms.
Analysis of threading (Stub) on depth 5 completed in 5.77 ms.
Analysis of inspect (Stub) on depth 3 completed in 8.75 ms.
Analysis of codeop (Stub) on depth 9 completed in 0.76 ms.
Analysis of pkgutil (Stub) on depth 4 completed in 8.62 ms.
Analysis of code (Stub) on depth 8 completed in 2.81 ms.
Analysis of encodings (Stub) on depth 6 completed in 0.21 ms.
Analysis of dis (Stub) on depth 4 completed in 3.26 ms.
Analysis of contextlib (Stub) on depth 5 completed in 12.28 ms.
Analysis of _ast (Stub) on depth 5 completed in 33.21 ms.
Analysis of _codecs (Stub) on depth 6 completed in 4.06 ms.
Analysis of modules loop on depth 4 in 10.67 ms:
Analysis of stat (Library) on depth 3 completed in 13.85 ms.
Analysis of math (Compiled) on depth 5 completed in 2.24 ms.
Analysis of signal (Stub) on depth 5 completed in 2.67 ms.
Analysis of struct (Stub) on depth 5 completed in 4.92 ms.
Analysis of re (Stub) on depth 3 completed in 8.08 ms.
Analysis of modules loop on depth 4 in 40.85 ms:
Analysis of readline (Compiled) on depth 3 completed in 0.68 ms.
Analysis of reprlib (Stub) on depth 4 completed in 1.42 ms.
Analysis of weakref (Stub) on depth 4 completed in 8.57 ms.
Analysis of _weakref (CompiledBuiltin) on depth 4 completed in 1.48 ms.
Analysis of _operator (Stub) on depth 5 completed in 0.5 ms.
Analysis of tokenize (Stub) on depth 4 completed in 2.93 ms.
Analysis of socket (Stub) on depth 6 completed in 14.62 ms.
Analysis of zipimport (CompiledBuiltin) on depth 4 completed in 2.76 ms.
Analysis of future (Library) on depth 6 completed in 3.56 ms.
Analysis of logging (Stub) on depth 8 completed in 14.75 ms.
Analysis of _threading_local (Stub) on depth 6 completed in 0.76 ms.
Analysis of _codecs (CompiledBuiltin) on depth 5 completed in 0.99 ms.
Analysis of ast (Stub) on depth 4 completed in 1.52 ms.
Analysis of _imp (Stub) on depth 5 completed in 0.72 ms.
Analysis of modules loop on depth 4 in 1.66 ms:
Analysis of _weakrefset (Library) on depth 4 completed in 3.39 ms.
Analysis of errno (CompiledBuiltin) on depth 4 completed in 33.88 ms.
Analysis of reprlib (Library) on depth 3 completed in 7.82 ms.
Analysis of selectors (Stub) on depth 5 completed in 2.04 ms.
Analysis of codeop (Library) on depth 8 completed in 1.39 ms.
Analysis of _py_abc (Library) on depth 4 completed in 6.17 ms.
Analysis of _imp (CompiledBuiltin) on depth 4 completed in 0.36 ms.
Analysis of select (Compiled) on depth 4 completed in 28 ms.
Analysis of abc (Library) on depth 3 completed in 2.67 ms.
Analysis of unittest (Stub) on depth 7 completed in 29.7 ms.
Analysis of doctest (Stub) on depth 6 completed in 9.4 ms.
Analysis of modules loop on depth 3 in 43.73 ms:
Analysis of _ast (CompiledBuiltin) on depth 4 completed in 100.15 ms.
Code Action in file:///Users/erwan/Documents/test_project/test.py at (14, 7) - (14, 7)
Analysis of modules loop on depth 2 in 753.33 ms:
Analysis version 387 has been completed in 1389.85 ms with 234 entries analyzed and 9 entries skipped.
Analysis version 591 of 360 entries has started.
Analysis of _thread (Stub) on depth 3 completed in 0.4 ms.
Analysis of marshal (Stub) on depth 3 completed in 0.6 ms.
Analysis of string (Stub) on depth 5 completed in 0.83 ms.
Analysis of _lsprof (Compiled) on depth 2 completed for library in 1.47 ms.
Analysis of abc (Stub) on depth 4 completed in 1.01 ms.
Analysis of profile (Stub) on depth 3 completed in 1.55 ms.
Analysis of cProfile (Stub) on depth 2 completed in 1.57 ms.
Analysis of _warnings (Stub) on depth 5 completed in 0.67 ms.
Analysis of _string (CompiledBuiltin) on depth 5 completed for library in 0.13 ms.
Analysis of _tracemalloc (Stub) on depth 6 completed in 0.24 ms.
Analysis of posix (Stub) on depth 4 completed in 0.59 ms.
Analysis of cmd (Stub) on depth 4 completed in 1.51 ms.
Analysis of atexit (Stub) on depth 5 completed in 0.45 ms.
Analysis of gc (Stub) on depth 5 completed in 0.68 ms.
Analysis of gettext (Stub) on depth 4 completed in 0.96 ms.
Analysis of copyreg (Library) on depth 3 completed for library in 0.8 ms.
Analysis of runpy (Stub) on depth 3 completed in 0.5 ms.
Analysis of _sre (CompiledBuiltin) on depth 4 completed for library in 0.28 ms.
Analysis of _stat (Stub) on depth 5 completed in 7.28 ms.
Analysis of _compat_pickle (Library) on depth 6 completed for library in 6.98 ms.
Analysis of fnmatch (Stub) on depth 6 completed in 0.24 ms.
Analysis of copy (Stub) on depth 3 completed in 0.33 ms.
Analysis of _pickle (Compiled) on depth 6 completed for library in 7.68 ms.
Analysis of itertools (Stub) on depth 4 completed in 8.89 ms.
Analysis of textwrap (Stub) on depth 4 completed in 1.21 ms.
Analysis of sre_constants (Stub) on depth 4 completed in 8.77 ms.
Analysis of encodings.aliases (Library) on depth 5 completed for library in 2.85 ms.
Analysis of pydoc_data (Library) on depth 8 completed for library in 0.03 ms.
Analysis of keyword (Stub) on depth 3 completed in 0.28 ms.
Analysis of _posixsubprocess (Stub) on depth 5 completed in 0.37 ms.
Analysis of getopt (Stub) on depth 8 completed in 0.43 ms.
Analysis of pydoc_data.topics (Library) on depth 8 completed for library in 0.38 ms.
Analysis of _abc (CompiledBuiltin) on depth 4 completed for library in 0.18 ms.
Analysis of pwd (Stub) on depth 5 completed in 0.29 ms.
Analysis of _heapq (Stub) on depth 6 completed in 0.27 ms.
Analysis of _opcode (Compiled) on depth 5 completed for library in 0.07 ms.
Analysis of urllib (Stub) on depth 9 completed in 0.01 ms.
Analysis of tty (Stub) on depth 9 completed in 0.38 ms.
Analysis of email.errors (Stub) on depth 10 completed in 0.86 ms.
Analysis of _sha256 (Compiled) on depth 11 completed for library in 0.18 ms.
Analysis of _sha512 (Compiled) on depth 11 completed for library in 0.11 ms.
Analysis of email.charset (Stub) on depth 10 completed in 0.61 ms.
Analysis of _blake2 (Compiled) on depth 11 completed for library in 5.04 ms.
Analysis of _hashlib (Compiled) on depth 11 completed for library in 0.72 ms.
Analysis of _socket (Compiled) on depth 10 completed for library in 7.6 ms.
Analysis of bisect (Stub) on depth 11 completed in 0.37 ms.
Analysis of _sha1 (Compiled) on depth 11 completed for library in 0.1 ms.
Analysis of _md5 (Compiled) on depth 11 completed for library in 0.1 ms.
Analysis of grp (Stub) on depth 11 completed in 0.25 ms.
Analysis of _weakrefset (Stub) on depth 5 completed in 8.29 ms.
Analysis of _bisect (Stub) on depth 12 completed in 0.41 ms.
Analysis of quopri (Stub) on depth 10 completed in 0.64 ms.
Analysis of html (Stub) on depth 10 completed in 0.13 ms.
Analysis of pyexpat.model (Stub) on depth 12 completed for library in 0.09 ms.
Analysis of _bz2 (Compiled) on depth 11 completed for library in 0.69 ms.
Analysis of _sha3 (Compiled) on depth 11 completed for library in 1.69 ms.
Analysis of termios (Stub) on depth 10 completed in 8.21 ms.
Analysis of html.entities (Stub) on depth 11 completed in 0.13 ms.
Analysis of _lzma (Compiled) on depth 11 completed for library in 1.31 ms.
Analysis of _thread (CompiledBuiltin) on depth 2 completed for library in 2.28 ms.
Analysis of marshal (CompiledBuiltin) on depth 2 completed for library in 0.4 ms.
Analysis of _tracemalloc (CompiledBuiltin) on depth 5 completed for library in 0.33 ms.
Analysis of _warnings (CompiledBuiltin) on depth 4 completed for library in 1.28 ms.
Analysis of atexit (CompiledBuiltin) on depth 4 completed for library in 0.12 ms.
Analysis of gc (CompiledBuiltin) on depth 4 completed for library in 6.8 ms.
Analysis of pwd (CompiledBuiltin) on depth 4 completed for library in 0.61 ms.
Analysis of _heapq (Compiled) on depth 5 completed for library in 0.22 ms.
Analysis of urllib (Library) on depth 8 completed for library in 0.02 ms.
Analysis of decimal (Stub) on depth 6 completed for library in 27.3 ms.
Analysis of importlib._bootstrap (Library) on depth 4 completed for library in 28.28 ms.
Analysis of _ssl (Compiled) on depth 11 completed for library in 18.36 ms.
Analysis of _posixsubprocess (Compiled) on depth 4 completed for library in 0.11 ms.
Analysis of sre_parse (Stub) on depth 4 completed in 6.98 ms.
Analysis of _stat (CompiledBuiltin) on depth 4 completed for library in 16.19 ms.
Analysis of itertools (CompiledBuiltin) on depth 3 completed for library in 12.41 ms.
Analysis of email.errors (Library) on depth 9 completed for library in 35.69 ms.
Analysis of _bisect (Compiled) on depth 11 completed for library in 0.17 ms.
Analysis of bisect (Library) on depth 10 completed for library in 0.36 ms.
Analysis of grp (Compiled) on depth 10 completed for library in 0.67 ms.
Analysis of email.header (Stub) on depth 10 completed in 0.78 ms.
Analysis of html.entities (Library) on depth 10 completed for library in 30.48 ms.
Analysis of modules loop on depth 3 in 74.95 ms:
Analysis of platform (Stub) on depth 9 completed in 1.05 ms.
Analysis of pstats (Stub) on depth 3 completed in 1.45 ms.
Analysis of enum (Stub) on depth 4 completed in 4.95 ms.
Analysis of tracemalloc (Stub) on depth 5 completed in 5.35 ms.
Analysis of stat (Stub) on depth 4 completed in 0.59 ms.
Analysis of heapq (Stub) on depth 5 completed in 1.12 ms.
Analysis of sre_compile (Stub) on depth 4 completed in 0.47 ms.
Analysis of functools (Stub) on depth 3 completed in 5.37 ms.
Analysis of pickle (Stub) on depth 6 completed in 5.24 ms.
Analysis of errno (Stub) on depth 5 completed in 12.21 ms.
Analysis of termios (Compiled) on depth 9 completed for library in 46.68 ms.
Analysis of optparse (Stub) on depth 3 completed in 14.24 ms.
Analysis of math (Stub) on depth 6 completed in 10.4 ms.
Analysis of pdb (Stub) on depth 7 completed in 0.48 ms.
Analysis of linecache (Stub) on depth 4 completed in 0.76 ms.
Analysis of pprint (Stub) on depth 7 completed in 1.09 ms.
Analysis of readline (Stub) on depth 4 completed in 1.4 ms.
Analysis of glob (Stub) on depth 8 completed in 0.4 ms.
Analysis of posixpath (Stub) on depth 4 completed in 1.09 ms.
Analysis of locale (Stub) on depth 5 completed in 2.17 ms.
Analysis of array (Stub) on depth 5 completed for library in 2.45 ms.
Analysis of ntpath (Stub) on depth 4 completed in 0.74 ms.
Analysis of token (Stub) on depth 4 completed in 1.95 ms.
Analysis of shlex (Stub) on depth 8 completed in 1.29 ms.
Analysis of select (Stub) on depth 5 completed in 3.19 ms.
Analysis of _weakref (Stub) on depth 5 completed in 7.34 ms.
Analysis of future (Stub) on depth 7 completed in 0.39 ms.
Analysis of opcode (Stub) on depth 5 completed in 0.83 ms.
Analysis of argparse (Stub) on depth 4 completed in 13.89 ms.
Analysis of shutil (Stub) on depth 10 completed in 9.44 ms.
Analysis of operator (Stub) on depth 4 completed in 9.91 ms.
Analysis of zlib (Stub) on depth 11 completed in 1.51 ms.
Analysis of _random (Stub) on depth 11 completed in 0.82 ms.
Analysis of webbrowser (Stub) on depth 9 completed in 11.74 ms.
Analysis of mimetypes (Stub) on depth 10 completed in 5.31 ms.
Analysis of hashlib (Stub) on depth 11 completed in 5.34 ms.
Analysis of base64 (Stub) on depth 10 completed in 5.01 ms.
Analysis of urllib.parse (Stub) on depth 9 completed in 7.53 ms.
Analysis of py_compile (Stub) on depth 12 completed in 0.68 ms.
Analysis of pyexpat.errors (Stub) on depth 12 completed for library in 0.44 ms.
Analysis of difflib (Stub) on depth 7 completed in 8.48 ms.
Analysis of uu (Stub) on depth 10 completed in 0.4 ms.
Analysis of binascii (Stub) on depth 10 completed in 1.02 ms.
Analysis of time (Stub) on depth 4 completed in 2 ms.
Analysis of warnings (Stub) on depth 4 completed in 1.61 ms.
Analysis of traceback (Stub) on depth 5 completed in 3.59 ms.
Analysis of _ast (Stub) on depth 5 completed in 24.28 ms.
Analysis of zipimport (Stub) on depth 5 completed in 0.56 ms.
Analysis of code (Stub) on depth 8 completed in 5.3 ms.
Analysis of subprocess (Stub) on depth 4 completed in 7.88 ms.
Analysis of threading (Stub) on depth 5 completed in 8.43 ms.
Analysis of zipfile (Stub) on depth 11 completed in 3.25 ms.
Analysis of codeop (Stub) on depth 9 completed in 0.42 ms.
Analysis of bz2 (Stub) on depth 11 completed in 1.07 ms.
Analysis of encodings (Stub) on depth 6 completed in 0.15 ms.
Analysis of tempfile (Stub) on depth 9 completed in 0.81 ms.
Analysis of modules loop on depth 9 in 14.15 ms:
Analysis of inspect (Stub) on depth 3 completed in 10.42 ms.
Analysis of _compression (Stub) on depth 12 completed in 0.48 ms.
Analysis of contextlib (Stub) on depth 5 completed in 4.32 ms.
Analysis of _codecs (Stub) on depth 6 completed in 2.93 ms.
Analysis of lzma (Stub) on depth 11 completed in 2.39 ms.
Analysis of pkgutil (Stub) on depth 4 completed in 7.25 ms.
Analysis of tarfile (Stub) on depth 11 completed in 10.76 ms.
Analysis of http (Stub) on depth 9 completed in 8.06 ms.
Analysis of re (Stub) on depth 3 completed in 9.36 ms.
Analysis of tty (Library) on depth 8 completed for library in 2.45 ms.
Analysis of signal (Stub) on depth 5 completed in 2.72 ms.
Analysis of plistlib (Stub) on depth 10 completed in 1.01 ms.
Analysis of struct (Stub) on depth 5 completed in 1.01 ms.
Analysis of modules loop on depth 4 in 16.01 ms:
Analysis of tokenize (Stub) on depth 4 completed in 6.83 ms.
Analysis of math (Compiled) on depth 5 completed for library in 2.21 ms.
Analysis of readline (Compiled) on depth 3 completed for library in 0.69 ms.
Analysis of modules loop on depth 4 in 36.84 ms:
Analysis of reprlib (Stub) on depth 4 completed in 1.57 ms.
Analysis of socket (Stub) on depth 6 completed in 14.7 ms.
Analysis of weakref (Stub) on depth 4 completed in 5.08 ms.
Analysis of _weakref (CompiledBuiltin) on depth 4 completed for library in 14.71 ms.
Analysis of future (Library) on depth 6 completed for library in 16.85 ms.
Analysis of dis (Stub) on depth 4 completed in 1.83 ms.
Analysis of _operator (Stub) on depth 5 completed in 0.28 ms.
Analysis of opcode (Library) on depth 4 completed for library in 4.15 ms.
Analysis of zlib (Compiled) on depth 10 completed for library in 24.34 ms.
Analysis of _random (Compiled) on depth 10 completed for library in 1 ms.
Analysis of random (Stub) on depth 10 completed in 5.62 ms.
Analysis of pyexpat (Stub) on depth 12 completed in 3.3 ms.
Analysis of binascii (Compiled) on depth 9 completed for library in 2.9 ms.
Analysis of datetime (Stub) on depth 10 completed in 10.26 ms.
Analysis of email.iterators (Stub) on depth 10 completed in 0.44 ms.
Analysis of email.encoders (Stub) on depth 11 completed in 0.19 ms.
Analysis of email (Stub) on depth 9 completed in 4.04 ms.
Analysis of ast (Stub) on depth 4 completed in 4.92 ms.
Analysis of email.feedparser (Stub) on depth 11 completed in 0.8 ms.
Analysis of stat (Library) on depth 3 completed for library in 54.72 ms.
Analysis of select (Compiled) on depth 4 completed for library in 45.71 ms.
Analysis of time (CompiledBuiltin) on depth 3 completed for library in 11.04 ms.
Analysis of gzip (Stub) on depth 12 completed in 3.02 ms.
Analysis of email.generator (Stub) on depth 10 completed in 2.39 ms.
Analysis of zipimport (CompiledBuiltin) on depth 4 completed for library in 3.9 ms.
Analysis of _codecs (CompiledBuiltin) on depth 5 completed for library in 0.94 ms.
Analysis of _imp (Stub) on depth 5 completed in 1.06 ms.
Analysis of errno (CompiledBuiltin) on depth 4 completed for library in 61.07 ms.
Analysis of modules loop on depth 4 in 2.35 ms:
Analysis of reprlib (Library) on depth 3 completed for library in 4.29 ms.
Analysis of xml.parsers.expat (Stub) on depth 11 completed in 8.11 ms.
Analysis of selectors (Stub) on depth 5 completed in 8.47 ms.
Analysis of _threading_local (Stub) on depth 6 completed in 0.7 ms.
Analysis of socketserver (Stub) on depth 10 completed in 9.3 ms.
Analysis of codeop (Library) on depth 8 completed for library in 2.66 ms.
Analysis of logging (Stub) on depth 8 completed in 18.22 ms.
Analysis of ssl (Stub) on depth 11 completed in 12.62 ms.
Analysis of _weakrefset (Library) on depth 4 completed for library in 3.75 ms.
Analysis of pyexpat (Compiled) on depth 11 completed for library in 7.88 ms.
Analysis of email.utils (Stub) on depth 10 completed in 56.38 ms.
Analysis of calendar (Stub) on depth 12 completed in 73.15 ms.
Analysis of email.headerregistry (Stub) on depth 11 completed in 79.75 ms.
Analysis of http.client (Stub) on depth 10 completed in 80.56 ms.
Analysis of _imp (CompiledBuiltin) on depth 4 completed for library in 5.51 ms.
Analysis of email.parser (Stub) on depth 10 completed in 11.18 ms.
Analysis of http.server (Stub) on depth 9 completed in 9.4 ms.
Analysis of _py_abc (Library) on depth 4 completed for library in 15.89 ms.
Analysis of abc (Library) on depth 3 completed for library in 2.08 ms.
Analysis of unittest (Stub) on depth 7 completed in 14.86 ms.
Analysis of doctest (Stub) on depth 6 completed in 16.18 ms.
Analysis of modules loop on depth 2 in 31.53 ms:
Analysis of _compression (Library) on depth 11 completed for library in 2.43 ms.
Analysis of sre_constants (Library) on depth 3 completed for library in 9.4 ms.
Analysis of _ast (CompiledBuiltin) on depth 4 completed for library in 191.28 ms.
Hover in file:///Users/erwan/Documents/test_project/test.py at (9, 8)
Analysis of modules loop on depth 2 in 963.52 ms:
Analysis of pstats (Library) on depth 2 completed for library in 4.01 ms.
Analysis of dataclasses (Library) on depth 1 completed for library in 12.11 ms.
Analysis of profile (Library) on depth 2 completed for library in 7.68 ms.
Analysis of cProfile (Library) on depth 1 completed for library in 1.67 ms.
Analysis of test (User) on depth 0 completed in 0.54 ms.
Indexing libraries.
Analysis complete: 360 modules in 3248.62 ms.
Analysis version 591 of 360 entries has been completed in 1396.64 ms.
Hover in file:///Users/erwan/Documents/test_project/test.py at (2, 19)
[Info - 11:21:23 PM] Analysis cache path: /Users/erwan/Library/Caches/Microsoft/Python Language Server
[Info - 11:21:23 PM] Microsoft Python Language Server version 0.5.31.0
[Info - 11:21:23 PM] Workspace root: /Users/erwan/Documents/other_test
[Info - 11:21:23 PM] GetCurrentSearchPaths /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/bin/python
[Info - 11:21:23 PM] Interpreter search paths:
[Info - 11:21:23 PM] /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7
[Info - 11:21:23 PM] /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
[Info - 11:21:23 PM] /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/site-packages
[Info - 11:21:23 PM] User search paths:
[Info - 11:21:23 PM] /Users/erwan/Documents/other_test/src
[Info - 11:21:24 PM] Initializing for /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/bin/python
[Info - 11:21:24 PM] Analysis caching mode: None.
Opening document file:///Users/erwan/Documents/other_test/othertest.py
Code Action in file:///Users/erwan/Documents/other_test/othertest.py at (4, 13) - (4, 13)
Analysis of othertest (User) queued. Dependencies: math
Create compiled (scraped): math /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so /Users/erwan/.pyenv/versions/3.7.2/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
Analysis of math (Compiled) queued. Dependencies: math (stub)
Analysis version 3 of 2 entries has started.
Analysis of math (Stub) queued. Dependencies: sys (stub)
Analysis of sys (Stub) queued. Dependencies: types (stub), importlib.abc (stub)
Analysis of types (Stub) queued. Dependencies: sys (stub), _importlib_modulespec (stub)
Analysis of importlib.abc (Stub) queued. Dependencies: abc (stub), os (stub), sys (stub), types (stub), _importlib_modulespec (stub)
Analysis of abc (Stub) queued. Dependencies:
Analysis of _importlib_modulespec (Stub) queued. Dependencies: abc (stub), sys (stub)
Analysis of math (Compiled) on depth 1 completed in 3.98 ms.
Analysis of os (Stub) queued. Dependencies: io (stub), sys (stub), posix (stub), os.path (stub)
Analysis of posix (Stub) queued. Dependencies:
Analysis of os.path (Stub) queued. Dependencies: posix (stub), sys (stub)
Analysis of io (Stub) queued. Dependencies: codecs (stub), mmap (stub), sys (stub), types (stub)
Analysis of mmap (Stub) queued. Dependencies: sys (stub)
Analysis of codecs (Stub) queued. Dependencies: sys (stub), abc (stub), types (stub)
Analysis of othertest (User) on depth 0 completed in 33.13 ms.
Analysis version 3 of 2 entries has been completed in 49.06 ms.
Analysis version 26 of 14 entries has started.
Analysis of abc (Stub) on depth 5 completed for library in 11.92 ms.
Analysis of posix (Stub) on depth 6 completed for library in 11.94 ms.
Analysis of modules loop on depth 3 in 139.84 ms:
Analysis of math (Stub) on depth 2 completed in 8.49 ms.
Analysis of math (Compiled) on depth 1 completed for library in 10.88 ms.
Analysis of othertest (User) on depth 0 completed in 0.3 ms.
Indexing libraries.
Analysis complete: 14 modules in 279.54 ms.
Analysis version 26 of 14 entries has been completed in 191.52 ms
This bug is very hindering for me, as I always use multi-root workspaces at work : it is the only thing keeping me from dropping Jedi in favor of MLPS as the Python engine.
The text was updated successfully, but these errors were encountered: