microsoft / python-language-server

Microsoft Language Server for Python
Apache License 2.0
915 stars 133 forks source link

No hovers and can't navigate to definition when inspecting code of external packages #1705

Closed imsedim closed 5 years ago

imsedim commented 5 years ago

Environment data

Expected behaviour

In my source code I navigate to a definition (using "Go to Definition") of a class defined in some external package. When relevant source file shows up, I should be able to use "Go to Definition" in that source file to navigate further within external package and its dependencies. I should also be able to hover over code to see hints from Language Server (like variable types, function definitions etc)

Actual behaviour

In my source code I navigate to a class TinyDB defined in package tinydb (but it's the same problem with any external packages I tried) so relevant source file shows up ({venv}/lib/python3.7/site-packages/tinydb/database.py).Hovering over language constructs always gives "Code analysis is in progress...". Pressing "Go To Definition" doesn't work either – nothing happens.

Logs

[Info  - 00:02:44] Microsoft Python Language Server version 0.4.71.0
[Info  - 00:02:44] Workspace root: /Users/Sedim/tmp
[Info  - 00:02:44] Analysis cache path: /Users/Sedim/Library/Caches/Microsoft/Python Language Server
[Info  - 00:02:44] GetCurrentSearchPaths /Users/Sedim/tmp/venv/bin/python3 
[Info  - 00:02:44] Interpreter search paths:
[Info  - 00:02:44]     /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7
[Info  - 00:02:44]     /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
[Info  - 00:02:44]     /Users/Sedim/tmp/venv/lib/python3.7/site-packages
[Info  - 00:02:44] User search paths:
[Info  - 00:02:46] Initializing for /Users/Sedim/tmp/venv/bin/python3
Watching /Users/Sedim/tmp/venv/lib/python3.7/site-packages
Watching /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7
Watching /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
[Info  - 00:02:46] Analysis caching mode: None.
Opening document file:///Users/Sedim/tmp/test.py
Analysis of test (User) queued. Dependencies: tinydb
Import:  tinydb /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/__init__.py 
Analysis version 2 of 1 entries has started.
Analysis of test (User) on depth 0 completed in 13.12 ms.
Missing keys: tinydb(/Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/__init__.py)
Analysis version 2 of 1 entries has been completed in 15.01 ms.
Analysis of tinydb (Library) queued. Dependencies: tinydb.queries, tinydb.storages, tinydb.database, tinydb.version
Import:  tinydb.queries /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/queries.py 
Import:  tinydb.storages /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/storages.py 
Import:  tinydb.database /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py 
Import:  tinydb.version /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/version.py 
Analysis version 4 of 2 entries has started.
Analysis of tinydb (Library) on depth 1 completed in 4.65 ms.
Analysis of test (User) on depth 0 completed in 0.27 ms.
Missing keys: tinydb.queries(/Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/queries.py), tinydb.storages(/Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/storages.py), tinydb.database(/Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py), tinydb.version(/Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/version.py)
Analysis version 4 of 2 entries has been completed in 8.11 ms.
Analysis of tinydb.version (Library) queued. Dependencies: 
Analysis version 9 of 6 entries has started.
Analysis of tinydb.version (Library) on depth 2 completed for library in 2.27 ms.
Analysis of tinydb.database(Library) canceled (no AST yet).
Analysis of tinydb.storages(Library) canceled (no AST yet).
Analysis of tinydb.queries(Library) canceled (no AST yet).
Analysis version 9 has been completed in 5.33 ms with 4 entries analyzed and 2 entries skipped.
Analysis of tinydb.storages (Library) queued. Dependencies: abc, codecs, os, warnings, tinydb.utils, json
Import:  abc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/abc.py 
Import:  codecs /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/codecs.py 
Import:  os /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/os.py 
Analysis of tinydb.queries (Library) queued. Dependencies: re, sys, tinydb.utils
Import:  warnings /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/warnings.py 
Analysis of tinydb.database (Library) queued. Dependencies: collections.abc, collections, warnings, tinydb, tinydb.utils
Import:  tinydb.utils /Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/utils.py 
Analysis of abc (Stub) queued. Dependencies: 
Import:  json /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__init__.py 
Import:  re /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/re.py 
Create built-in compiled (scraped) module:  sys /Users/Sedim/tmp/venv/bin/python3 
Analysis version 18 of 8 entries has started.
Analysis of codecs(Library) canceled (no AST yet).
Analysis of os(Library) canceled (no AST yet).
Analysis of abc(Library) canceled (no AST yet).
Analysis of tinydb.storages (Library) on depth 2 completed in 19.99 ms.
Import:  collections.abc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/abc.py 
Import:  collections /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/collections/__init__.py 
Analysis of json (Library) queued. Dependencies: json (stub), json.decoder, json.encoder, codecs
Analysis of abc (Library) queued. Dependencies: abc (stub), _abc, _py_abc
Import:  json.decoder /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/decoder.py 
Import:  json.encoder /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/encoder.py 
Create built-in compiled (scraped) module:  _abc /Users/Sedim/tmp/venv/bin/python3 
Import:  _py_abc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_py_abc.py 
Analysis of json (Stub) queued. Dependencies: sys (stub), json.decoder (stub), json.encoder (stub)
Analysis of _py_abc (Library) queued. Dependencies: _weakrefset
Analysis of tinydb.utils (Library) queued. Dependencies: warnings, collections, contextlib
Import:  contextlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/contextlib.py 
Import:  _weakrefset /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_weakrefset.py 
Analysis of _weakrefset (Library) queued. Dependencies: _weakrefset (stub), _weakref
Create built-in compiled (scraped) module:  _weakref /Users/Sedim/tmp/venv/bin/python3 
Analysis of _weakref (CompiledBuiltin) queued. Dependencies: _weakref (stub)
Analysis of _weakref (Stub) queued. Dependencies: sys (stub)
Analysis of _weakrefset (Stub) queued. Dependencies: 
Analysis of warnings (Library) queued. Dependencies: warnings (stub), sys, linecache, tracemalloc, re, traceback, _warnings
Import:  linecache /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/linecache.py 
Import:  tracemalloc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tracemalloc.py 
Import:  traceback /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/traceback.py 
Create built-in compiled (scraped) module:  _warnings /Users/Sedim/tmp/venv/bin/python3 
Analysis of _warnings (CompiledBuiltin) queued. Dependencies: _warnings (stub)
Analysis of _warnings (Stub) queued. Dependencies: 
Analysis of contextlib (Library) queued. Dependencies: contextlib (stub), abc, sys, _collections_abc, collections, functools
Import:  _collections_abc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_collections_abc.py 
Import:  functools /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/functools.py 
Analysis of traceback (Library) queued. Dependencies: traceback (stub), collections, itertools, linecache, sys
Create built-in compiled (scraped) module:  itertools /Users/Sedim/tmp/venv/bin/python3 
Analysis of itertools (CompiledBuiltin) queued. Dependencies: itertools (stub)
Analysis of functools (Library) queued. Dependencies: functools (stub), _functools, abc, collections, reprlib, _thread, types, weakref
Create built-in compiled (scraped) module:  _functools /Users/Sedim/tmp/venv/bin/python3 
Analysis of itertools (Stub) queued. Dependencies: 
Import:  reprlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/reprlib.py 
Create built-in compiled (scraped) module:  _thread /Users/Sedim/tmp/venv/bin/python3 
Import:  types /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/types.py 
Import:  weakref /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/weakref.py 
Analysis of traceback (Stub) queued. Dependencies: types (stub), sys (stub)
Analysis of tinydb.database (Library) on depth 2 completed in 83.7 ms.
Analysis of weakref (Library) queued. Dependencies: weakref (stub), _weakref, _weakrefset, _collections_abc, sys, itertools, copy, atexit, gc
Import:  copy /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/copy.py 
Create built-in compiled (scraped) module:  atexit /Users/Sedim/tmp/venv/bin/python3 
Create built-in compiled (scraped) module:  gc /Users/Sedim/tmp/venv/bin/python3 
Analysis of gc (CompiledBuiltin) queued. Dependencies: gc (stub)
Analysis of gc (Stub) queued. Dependencies: 
Analysis of atexit (CompiledBuiltin) queued. Dependencies: atexit (stub)
Analysis of atexit (Stub) queued. Dependencies: 
Analysis of tracemalloc (Library) queued. Dependencies: tracemalloc (stub), collections.abc, functools, fnmatch, linecache, os, pickle, _tracemalloc
Import:  fnmatch /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/fnmatch.py 
Import:  pickle /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pickle.py 
Analysis of copy (Library) queued. Dependencies: copy (stub), types, weakref, copyreg
Create built-in compiled (scraped) module:  _tracemalloc /Users/Sedim/tmp/venv/bin/python3 
Import:  copyreg /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/copyreg.py 
Analysis of copyreg (Library) queued. Dependencies: 
Analysis of _tracemalloc (CompiledBuiltin) queued. Dependencies: _tracemalloc (stub)
Analysis of _tracemalloc (Stub) queued. Dependencies: 
Analysis of copy (Stub) queued. Dependencies: 
Analysis of collections (Library) queued. Dependencies: collections (stub), _collections_abc, operator, keyword, sys, heapq, _weakref, itertools, reprlib, _collections, warnings, copy
Analysis of weakref (Stub) queued. Dependencies: sys (stub), types (stub), _weakref (stub), _weakrefset (stub)
Import:  operator /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/operator.py 
Import:  keyword /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/keyword.py 
Import:  heapq /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/heapq.py 
Create built-in compiled (scraped) module:  _collections /Users/Sedim/tmp/venv/bin/python3 
Analysis of _collections (CompiledBuiltin) queued. Dependencies: collections
Analysis of types (Library) queued. Dependencies: types (stub), sys, functools, _collections_abc
Analysis of heapq (Library) queued. Dependencies: heapq (stub), _heapq, doctest
Create compiled (scraped):  _heapq /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_heapq.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of types (Stub) queued. Dependencies: sys (stub), _importlib_modulespec (stub)
Import:  doctest /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/doctest.py 
Analysis of _importlib_modulespec (Stub) queued. Dependencies: abc (stub), sys (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:  struct /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/struct.py 
Analysis of _thread (CompiledBuiltin) queued. Dependencies: _thread (stub)
Analysis of _thread (Stub) queued. Dependencies: 
Import:  io /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/io.py 
Import:  _compat_pickle /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_compat_pickle.py 
Create compiled (scraped):  _pickle /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_pickle.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Import:  argparse /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/argparse.py 
Import:  pprint /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pprint.py 
Analysis of reprlib (Library) queued. Dependencies: reprlib (stub), itertools, _thread
Analysis of reprlib (Stub) queued. Dependencies: array (stub)
Analysis of array (Stub) queued. Dependencies: sys (stub)
Analysis of _functools (CompiledBuiltin) queued. Dependencies: functools
Analysis of pprint (Library) queued. Dependencies: pprint (stub), collections, re, sys, types, io, time
Create built-in compiled (scraped) module:  time /Users/Sedim/tmp/venv/bin/python3 
Analysis of functools (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
Analysis of time (CompiledBuiltin) queued. Dependencies: time (stub)
Import:  __future__ /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/__future__.py 
Import:  difflib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/difflib.py 
Import:  inspect /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/inspect.py 
Import:  pdb /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pdb.py 
Import:  unittest /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/__init__.py 
Analysis of unittest (Library) queued. Dependencies: unittest (stub), unittest.result, unittest.case, unittest.suite, unittest.loader, unittest.main, unittest.runner, unittest.signals, os
Import:  unittest.result /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/result.py 
Analysis of time (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of _collections_abc (Library) queued. Dependencies: abc, sys
Import:  unittest.case /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py 
Analysis of pprint (Stub) queued. Dependencies: sys (stub)
Import:  unittest.suite /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/suite.py 
Import:  unittest.loader /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/loader.py 
Import:  unittest.main /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/main.py 
Import:  unittest.runner /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/runner.py 
Import:  unittest.signals /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/signals.py 
Analysis of unittest.signals (Library) queued. Dependencies: signal, weakref, functools
Analysis of contextlib (Stub) queued. Dependencies: types (stub), sys (stub)
Import:  signal /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/signal.py 
Analysis of signal (Library) queued. Dependencies: signal (stub), _signal, functools, enum
Create built-in compiled (scraped) module:  _signal /Users/Sedim/tmp/venv/bin/python3 
Import:  enum /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/enum.py 
Analysis of enum (Library) queued. Dependencies: enum (stub), sys, types, _collections, collections, warnings
Analysis of enum (Stub) queued. Dependencies: sys (stub), abc (stub)
Analysis of _signal (CompiledBuiltin) queued. Dependencies: signal
Analysis of signal (Stub) queued. Dependencies: sys (stub), enum (stub), types (stub)
Analysis of argparse (Library) queued. Dependencies: argparse (stub), os, re, sys, gettext, copy, textwrap, warnings
Import:  gettext /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/gettext.py 
Import:  textwrap /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/textwrap.py 
Analysis of unittest.runner (Library) queued. Dependencies: sys, time, warnings, unittest, unittest.result, unittest.signals
Analysis of textwrap (Library) queued. Dependencies: textwrap (stub), re
Analysis of unittest.main (Library) queued. Dependencies: sys, argparse, os, unittest, unittest.loader, unittest.runner, unittest.signals
Analysis of textwrap (Stub) queued. Dependencies: 
Analysis of unittest.loader (Library) queued. Dependencies: os, re, sys, traceback, types, functools, warnings, fnmatch, unittest, unittest.case, unittest.suite, unittest.util
Import:  unittest.util /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/util.py 
Analysis of gettext (Library) queued. Dependencies: gettext (stub), locale, os, re, sys, warnings, struct, errno, copy
Import:  locale /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/locale.py 
Analysis of unittest.util (Library) queued. Dependencies: collections, os
Create built-in compiled (scraped) module:  errno /Users/Sedim/tmp/venv/bin/python3 
Analysis of errno (CompiledBuiltin) queued. Dependencies: errno (stub)
Analysis of errno (Stub) queued. Dependencies: sys (stub)
Analysis of unittest.suite (Library) queued. Dependencies: sys, unittest, unittest.case, unittest.util
Analysis of locale (Library) queued. Dependencies: locale (stub), sys, encodings, encodings.aliases, re, _collections_abc, functools, _locale, warnings, os, _bootlocale
Analysis of unittest.case (Library) queued. Dependencies: sys, functools, difflib, logging, pprint, re, warnings, collections, contextlib, traceback, unittest, unittest.result, unittest.util
Import:  encodings /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/__init__.py 
Analysis of locale (Stub) queued. Dependencies: decimal (stub), sys (stub)
Import:  encodings.aliases /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/aliases.py 
Create built-in compiled (scraped) module:  _locale /Users/Sedim/tmp/venv/bin/python3 
Import:  _bootlocale /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_bootlocale.py 
Analysis of gettext (Stub) queued. Dependencies: 
Import:  logging /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/logging/__init__.py 
Analysis of decimal (Stub) queued. Dependencies: 
Analysis of argparse (Stub) queued. Dependencies: sys (stub)
Analysis of _pickle (Compiled) queued. Dependencies: 
Analysis of logging (Library) queued. Dependencies: logging (stub), sys, os, time, io, traceback, warnings, weakref, collections, collections.abc, string, threading, pickle, atexit
Import:  string /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/string.py 
Analysis of _compat_pickle (Library) queued. Dependencies: 
Import:  threading /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/threading.py 
Analysis of io (Library) queued. Dependencies: io (stub), _io, abc
Create built-in compiled (scraped) module:  _io /Users/Sedim/tmp/venv/bin/python3 
Analysis of threading (Library) queued. Dependencies: threading (stub), os, sys, _thread, time, traceback, _weakrefset, itertools, _collections, collections, warnings, _threading_local
Import:  _threading_local /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_threading_local.py 
Analysis of _threading_local (Library) queued. Dependencies: _threading_local (stub), weakref, contextlib, threading
Analysis of _io (CompiledBuiltin) queued. Dependencies: io
Analysis of _threading_local (Stub) queued. Dependencies: weakref (stub)
Analysis of threading (Stub) queued. Dependencies: types (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 string (Library) queued. Dependencies: string (stub), _string, re, collections
Analysis of struct (Library) queued. Dependencies: struct (stub), _struct
Create built-in compiled (scraped) module:  _string /Users/Sedim/tmp/venv/bin/python3 
Analysis of string (Stub) queued. Dependencies: 
Create compiled (scraped):  _struct /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_struct.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _struct (Compiled) queued. Dependencies: struct
Analysis of _string (CompiledBuiltin) queued. Dependencies: 
Analysis of struct (Stub) queued. Dependencies: sys (stub), array (stub)
Analysis of logging (Stub) queued. Dependencies: string (stub), time (stub), types (stub), sys (stub), threading (stub)
Analysis of pickle (Stub) queued. Dependencies: sys (stub)
Analysis of _bootlocale (Library) queued. Dependencies: sys, _locale, locale
Analysis of _locale (CompiledBuiltin) queued. Dependencies: locale
Analysis of fnmatch (Library) queued. Dependencies: fnmatch (stub), os, posixpath, re, functools
Import:  posixpath /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/posixpath.py 
Analysis of encodings.aliases (Library) queued. Dependencies: 
Analysis of encodings (Library) queued. Dependencies: encodings (stub), codecs, sys, encodings.aliases, encodings.mbcs
Import:  encodings.mbcs /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/encodings/mbcs.py 
Analysis of posixpath (Library) queued. Dependencies: posixpath (stub), os, sys, stat, genericpath, pwd, re
Analysis of encodings.mbcs (Library) queued. Dependencies: codecs
Analysis of posixpath (Stub) queued. Dependencies: sys (stub)
Analysis of encodings (Stub) queued. Dependencies: codecs (stub)
Import:  stat /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/stat.py 
Import:  genericpath /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/genericpath.py 
Create built-in compiled (scraped) module:  pwd /Users/Sedim/tmp/venv/bin/python3 
Analysis of pwd (CompiledBuiltin) queued. Dependencies: pwd (stub)
Analysis of pwd (Stub) queued. Dependencies: 
Analysis of unittest.result (Library) queued. Dependencies: io, sys, traceback, unittest, unittest.util, functools
Analysis of genericpath (Library) queued. Dependencies: os, stat
Analysis of stat (Library) queued. Dependencies: stat (stub), _stat
Analysis of unittest (Stub) queued. Dependencies: logging (stub), sys (stub), types (stub)
Create built-in compiled (scraped) module:  _stat /Users/Sedim/tmp/venv/bin/python3 
Analysis of _stat (CompiledBuiltin) queued. Dependencies: _stat (stub)
Analysis of _stat (Stub) queued. Dependencies: 
Analysis of stat (Stub) queued. Dependencies: sys (stub)
Analysis of fnmatch (Stub) queued. Dependencies: 
Analysis of tracemalloc (Stub) queued. Dependencies: sys (stub)
Analysis of linecache (Library) queued. Dependencies: linecache (stub), functools, sys, os, tokenize
Import:  tokenize /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tokenize.py 
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:  cmd /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/cmd.py 
Import:  bdb /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/bdb.py 
Import:  dis /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/dis.py 
Analysis of tokenize (Library) queued. Dependencies: tokenize (stub), codecs, collections, io, itertools, re, sys, token, argparse
Import:  code /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/code.py 
Import:  glob /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/glob.py 
Create compiled (scraped):  readline /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/readline.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of tokenize (Stub) queued. Dependencies: sys (stub), token (stub), os (stub)
Import:  shlex /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/shlex.py 
Analysis of linecache (Stub) queued. Dependencies: sys (stub)
Import:  runpy /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/runpy.py 
Import:  pydoc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc.py 
Analysis of warnings (Stub) queued. Dependencies: types (stub)
Import:  getopt /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/getopt.py 
Analysis of getopt (Library) queued. Dependencies: getopt (stub), os, gettext, sys
Import:  token /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/token.py 
Analysis of token (Library) queued. Dependencies: token (stub), re, sys
Analysis of token (Stub) queued. Dependencies: sys (stub)
Analysis of getopt (Stub) queued. Dependencies: 
Analysis of os (Library) queued. Dependencies: os (stub), abc, sys, stat, posix, posixpath, ntpath, warnings, _collections_abc, subprocess, io
Create built-in compiled (scraped) module:  posix /Users/Sedim/tmp/venv/bin/python3 
Import:  ntpath /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ntpath.py 
Import:  subprocess /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py 
Analysis of subprocess (Library) queued. Dependencies: subprocess (stub), sys, io, os, time, signal, warnings, errno, threading, _posixsubprocess, select, selectors
Create compiled (scraped):  _posixsubprocess /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_posixsubprocess.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Create compiled (scraped):  select /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/select.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Import:  selectors /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/selectors.py 
Analysis of selectors (Library) queued. Dependencies: selectors (stub), abc, collections, collections.abc, math, select, sys
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
Create compiled (scraped):  math /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of math (Compiled) queued. Dependencies: math (stub)
Import:  importlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/__init__.py 
Analysis of runpy (Library) queued. Dependencies: runpy (stub), sys, importlib, importlib.machinery, importlib.util, types, pkgutil, warnings
Import:  importlib._bootstrap /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/_bootstrap.py 
Analysis of runpy (Stub) queued. Dependencies: 
Import:  importlib._bootstrap_external /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/_bootstrap_external.py 
Import:  importlib.machinery /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/machinery.py 
Import:  importlib.util /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/util.py 
Import:  pkgutil /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pkgutil.py 
Import:  platform /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/platform.py 
Analysis of shlex (Library) queued. Dependencies: shlex (stub), os, re, sys, collections, io
Import:  urllib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/__init__.py 
Import:  urllib.parse /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/parse.py 
Analysis of shlex (Stub) queued. Dependencies: sys (stub)
Import:  tempfile /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tempfile.py 
Analysis of readline (Compiled) queued. Dependencies: readline (stub)
Import:  tty /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tty.py 
Import:  pydoc_data /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/__init__.py 
Import:  pydoc_data.topics /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/pydoc_data/topics.py 
Analysis of readline (Stub) queued. Dependencies: sys (stub)
Import:  http /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/__init__.py 
Import:  http.server /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/server.py 
Import:  email /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/__init__.py 
Import:  email.message /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/message.py 
Import:  webbrowser /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/webbrowser.py 
Analysis of email (Library) queued. Dependencies: email (stub), email.parser
Import:  email.parser /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/parser.py 
Analysis of email.parser (Library) queued. Dependencies: email.parser (stub), io, email.feedparser, email._policybase
Analysis of webbrowser (Library) queued. Dependencies: webbrowser (stub), os, shlex, shutil, sys, subprocess, threading, copy, glob, pwd, socket, tempfile, getopt
Analysis of email.parser (Stub) queued. Dependencies: email (stub), email.feedparser (stub), email.message (stub), email.policy (stub)
Import:  email.feedparser /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/feedparser.py 
Import:  email._policybase /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/_policybase.py 
Analysis of email (Stub) queued. Dependencies: sys (stub), email.message (stub), email.policy (stub)
Import:  shutil /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/shutil.py 
Import:  socket /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socket.py 
Analysis of socket (Library) queued. Dependencies: socket (stub), _socket, os, sys, io, selectors, enum, errno
Create compiled (scraped):  _socket /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_socket.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
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
Import:  datetime /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/datetime.py 
Import:  email.utils /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/utils.py 
Analysis of _socket (Compiled) queued. Dependencies: 
Import:  html /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/__init__.py 
Import:  http.client /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/http/client.py 
Analysis of email.policy (Stub) queued. Dependencies: abc (stub), sys (stub), email.message (stub), email.errors (stub), email.header (stub), email.contentmanager (stub)
Import:  mimetypes /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/mimetypes.py 
Import:  socketserver /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socketserver.py 
Import:  base64 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/base64.py 
Create compiled (scraped):  binascii /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/binascii.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of binascii (Compiled) queued. Dependencies: binascii (stub)
Analysis of email.contentmanager (Stub) queued. Dependencies: email.message (stub)
Analysis of socket (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of email.header (Stub) queued. Dependencies: email.charset (stub)
Analysis of email.charset (Stub) queued. Dependencies: 
Analysis of email.errors (Stub) queued. Dependencies: 
Analysis of binascii (Stub) queued. Dependencies: sys (stub)
Analysis of shutil (Library) queued. Dependencies: shutil (stub), os, sys, stat, fnmatch, collections, errno, zlib, bz2, lzma, pwd, grp, tarfile, zipfile
Create compiled (scraped):  zlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/zlib.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of base64 (Library) queued. Dependencies: base64 (stub), re, struct, binascii, warnings, sys, getopt
Import:  bz2 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/bz2.py 
Analysis of base64 (Stub) queued. Dependencies: sys (stub)
Import:  lzma /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lzma.py 
Create compiled (scraped):  grp /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/grp.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Import:  tarfile /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/tarfile.py 
Import:  zipfile /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/zipfile.py 
Analysis of socketserver (Library) queued. Dependencies: socketserver (stub), socket, selectors, os, sys, threading, io, time, traceback
Analysis of socketserver (Stub) queued. Dependencies: socket (stub), sys (stub), types (stub)
Analysis of mimetypes (Library) queued. Dependencies: mimetypes (stub), os, sys, posixpath, urllib, urllib.parse, getopt
Analysis of mimetypes (Stub) queued. Dependencies: sys (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
Import:  py_compile /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/py_compile.py 
Analysis of py_compile (Library) queued. Dependencies: py_compile (stub), enum, importlib, importlib._bootstrap_external, importlib.machinery, importlib.util, os, sys, traceback
Analysis of py_compile (Stub) queued. Dependencies: sys (stub)
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
Import:  ssl /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ssl.py 
Analysis of zipfile (Stub) queued. Dependencies: types (stub), os (stub), sys (stub)
Analysis of ssl (Library) queued. Dependencies: ssl (stub), sys, os, collections, enum, _ssl, socket, base64, errno, warnings, time, calendar
Create compiled (scraped):  _ssl /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Import:  calendar /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/calendar.py 
Analysis of calendar (Library) queued. Dependencies: calendar (stub), sys, datetime, locale, itertools, argparse
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
Analysis of calendar (Stub) queued. Dependencies: datetime (stub), sys (stub), time (stub)
Import:  gzip /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/gzip.py 
Analysis of gzip (Library) queued. Dependencies: gzip (stub), struct, sys, time, os, zlib, io, _compression, warnings, errno
Analysis of _ssl (Compiled) queued. Dependencies: 
Analysis of gzip (Stub) queued. Dependencies: os.path (stub), _compression (stub), zlib (stub)
Import:  _compression /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_compression.py 
Analysis of _compression (Library) queued. Dependencies: _compression (stub), io
Analysis of tarfile (Stub) queued. Dependencies: os (stub), sys (stub), types (stub)
Analysis of grp (Compiled) queued. Dependencies: grp (stub)
Analysis of grp (Stub) queued. Dependencies: 
Analysis of os.path (Stub) queued. Dependencies: posix (stub), sys (stub)
Analysis of _compression (Stub) queued. Dependencies: io (stub)
Analysis of lzma (Library) queued. Dependencies: lzma (stub), io, os, _lzma, _compression
Analysis of ssl (Stub) queued. Dependencies: socket (stub), sys (stub)
Create compiled (scraped):  _lzma /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_lzma.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _lzma (Compiled) queued. Dependencies: 
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
Create compiled (scraped):  _bz2 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bz2.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of http.client (Stub) queued. Dependencies: email (stub), email.message (stub), io (stub), socket (stub), sys (stub), ssl (stub), types (stub)
Analysis of _bz2 (Compiled) queued. Dependencies: 
Analysis of bz2 (Stub) queued. Dependencies: io (stub), sys (stub), os (stub)
Analysis of re (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of re (Library) queued. Dependencies: re (stub), enum, sre_compile, sre_parse, functools, _locale, copyreg, sre_constants
Import:  sre_compile /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sre_compile.py 
Import:  sre_parse /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sre_parse.py 
Import:  sre_constants /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/sre_constants.py 
Analysis of sre_constants (Library) queued. Dependencies: sre_constants (stub), _sre
Analysis of codecs (Library) queued. Dependencies: codecs (stub), sys, _codecs, encodings
Create built-in compiled (scraped) module:  _sre /Users/Sedim/tmp/venv/bin/python3 
Analysis of sre_constants (Stub) queued. Dependencies: 
Create built-in compiled (scraped) module:  _codecs /Users/Sedim/tmp/venv/bin/python3 
Analysis of ntpath (Stub) queued. Dependencies: sys (stub)
Analysis of _codecs (CompiledBuiltin) queued. Dependencies: _codecs (stub)
Analysis of _posixsubprocess (Stub) queued. Dependencies: 
Analysis of _codecs (Stub) queued. Dependencies: sys (stub), codecs (stub)
Analysis of _posixsubprocess (Compiled) queued. Dependencies: _posixsubprocess (stub)
Analysis of select (Stub) queued. Dependencies: sys (stub)
Analysis of select (Compiled) queued. Dependencies: select (stub)
Analysis of _sre (CompiledBuiltin) queued. Dependencies: 
Analysis of math (Stub) queued. Dependencies: sys (stub)
Analysis of posix (Stub) queued. Dependencies: 
Analysis of importlib (Stub) queued. Dependencies: importlib.util (stub), importlib.abc (stub), sys (stub), types (stub)
Analysis of importlib (Library) queued. Dependencies: importlib (stub), _imp, sys, importlib._bootstrap, importlib._bootstrap_external, types, warnings
Analysis of importlib.abc (Stub) queued. Dependencies: abc (stub), os (stub), sys (stub), types (stub), _importlib_modulespec (stub)
Create built-in compiled (scraped) module:  _imp /Users/Sedim/tmp/venv/bin/python3 
Analysis of sre_compile (Stub) queued. Dependencies: sys (stub), sre_parse (stub), sre_constants (stub)
Analysis of _imp (CompiledBuiltin) queued. Dependencies: _imp (stub)
Analysis of sre_compile (Library) queued. Dependencies: sre_compile (stub), _sre, sre_parse, sre_constants, sys
Analysis of ntpath (Library) queued. Dependencies: ntpath (stub), os, sys, stat, genericpath, string
Analysis of importlib.machinery (Stub) queued. Dependencies: importlib (stub), importlib.abc (stub), sys (stub), types (stub), _importlib_modulespec (stub)
Analysis of _imp (Stub) queued. Dependencies: sys (stub), types (stub), importlib.machinery (stub)
Analysis of importlib.machinery (Library) queued. Dependencies: importlib.machinery (stub), _imp, importlib._bootstrap, importlib._bootstrap_external
Analysis of sre_parse (Stub) queued. Dependencies: sre_constants (stub)
Analysis of importlib.util (Library) queued. Dependencies: importlib.util (stub), importlib, importlib.abc, importlib._bootstrap, importlib._bootstrap_external, contextlib, _imp, functools, sys, types, warnings
Import:  importlib.abc /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/importlib/abc.py 
Analysis of html (Library) queued. Dependencies: html (stub), re, html.entities
Analysis of importlib._bootstrap_external (Library) queued. Dependencies: tokenize
Analysis of selectors (Stub) queued. Dependencies: abc (stub), socket (stub)
Import:  html.entities /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/entities.py 
Analysis of pkgutil (Stub) queued. Dependencies: sys (stub), importlib.abc (stub)
Analysis of codecs (Stub) queued. Dependencies: sys (stub), abc (stub), types (stub)
Analysis of html.entities (Stub) queued. Dependencies: 
Analysis of html (Stub) queued. Dependencies: 
Analysis of pkgutil (Library) queued. Dependencies: pkgutil (stub), collections, functools, importlib, importlib.util, importlib.machinery, os, sys, types, warnings, marshal, inspect, zipimport
Analysis of zlib (Compiled) queued. Dependencies: zlib (stub)
Analysis of platform (Stub) queued. Dependencies: os (stub)
Analysis of importlib.util (Stub) queued. Dependencies: importlib (stub), importlib.abc (stub), importlib.machinery (stub), sys (stub), types (stub)
Analysis of subprocess (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of sys (CompiledBuiltin) queued. Dependencies: sys (stub), _io, types
Analysis of os (Stub) queued. Dependencies: io (stub), sys (stub), posix (stub), os.path (stub)
Analysis of importlib.abc (Library) queued. Dependencies: importlib.abc (stub), importlib, importlib._bootstrap, importlib._bootstrap_external, importlib.machinery, abc, warnings
Analysis of urllib (Stub) queued. Dependencies: 
Analysis of urllib (Library) queued. Dependencies: urllib (stub)
Analysis of urllib.parse (Stub) queued. Dependencies: sys (stub)
Analysis of sys (Stub) queued. Dependencies: types (stub), importlib.abc (stub)
Analysis of tinydb.queries (Library) on depth 2 completed in 65.52 ms.
Analysis version 18 has been completed in 635.12 ms with 6 entries analyzed and 2 entries skipped.
Analysis version 390 of 332 entries has started.
Analysis of json.decoder(Library) canceled (no AST yet).
Analysis of json.encoder(Library) canceled (no AST yet).
Analysis of _abc(CompiledBuiltin) canceled (no AST yet).
Analysis of platform (Library) queued. Dependencies: platform (stub), collections, sys, os, re, subprocess, warnings, plistlib, socket, struct
Analysis of collections.abc (Stub) queued. Dependencies: sys (stub), collections (stub)
Analysis of importlib._bootstrap (Library) queued. Dependencies: 
Create built-in compiled (scraped) module:  marshal /Users/Sedim/tmp/venv/bin/python3 
Create built-in compiled (scraped) module:  zipimport /Users/Sedim/tmp/venv/bin/python3 
Analysis of sre_parse (Library) queued. Dependencies: sre_parse (stub), sre_constants, warnings
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 zipimport (CompiledBuiltin) queued. Dependencies: zipimport (stub)
Analysis of email.utils (Stub) queued. Dependencies: email.charset (stub), datetime (stub)
Analysis of zipimport (Stub) queued. Dependencies: types (stub)
Import:  plistlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/plistlib.py 
Analysis of plistlib (Stub) queued. Dependencies: sys (stub), enum (stub)
Import:  random /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/random.py 
Import:  email._parseaddr /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/_parseaddr.py 
Import:  email.charset /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/charset.py 
Analysis of random (Stub) queued. Dependencies: _random (stub), sys (stub)
Analysis of _random (Stub) queued. Dependencies: sys (stub)
Analysis of tempfile (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of email.charset (Library) queued. Dependencies: email.charset (stub), functools, email, email.base64mime, email.quoprimime, email.errors, email.encoders
Import:  email.base64mime /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/base64mime.py 
Import:  email.quoprimime /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/quoprimime.py 
Import:  email.errors /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/errors.py 
Import:  email.encoders /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/encoders.py 
Analysis of email.encoders (Library) queued. Dependencies: email.encoders (stub), base64, quopri
Analysis of plistlib (Library) queued. Dependencies: plistlib (stub), binascii, codecs, contextlib, datetime, enum, io, itertools, os, re, struct, warnings, xml.parsers.expat
Analysis of email.encoders (Stub) queued. Dependencies: email.message (stub)
Analysis of tty (Stub) queued. Dependencies: 
Analysis of email.errors (Library) queued. Dependencies: email.errors (stub)
Import:  quopri /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/quopri.py 
Import:  xml.parsers.expat /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/parsers/expat.py 
Analysis of xml.parsers.expat (Library) queued. Dependencies: xml.parsers.expat (stub), sys, pyexpat
Analysis of tempfile (Library) queued. Dependencies: tempfile (stub), functools, warnings, io, os, shutil, errno, random, weakref, _thread
Create compiled (scraped):  pyexpat /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/pyexpat.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of pyexpat (Compiled) queued. Dependencies: pyexpat (stub)
Analysis of pyexpat (Stub) queued. Dependencies: pyexpat.errors (stub), pyexpat.model (stub)
Analysis of pyexpat.model (Stub) queued. Dependencies: 
Analysis of pyexpat.errors (Stub) queued. Dependencies: sys (stub)
Analysis of _abc (CompiledBuiltin) queued. Dependencies: 
Analysis of pydoc_data (Library) queued. Dependencies: 
Analysis of json.encoder (Library) queued. Dependencies: json.encoder (stub), re, _json
Analysis of abc (Stub) on depth 4 completed in 52.23 ms.
Create compiled (scraped):  _json /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_json.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _json (Compiled) queued. Dependencies: _json (stub)
Analysis of _json (Stub) queued. Dependencies: 
Analysis of http (Stub) queued. Dependencies: sys (stub), enum (stub)
Analysis of sys (CompiledBuiltin) on depth 3 completed in 63.63 ms.
Analysis of tty (Library) queued. Dependencies: tty (stub), termios
Analysis of xml.parsers.expat (Stub) queued. Dependencies: pyexpat (stub), pyexpat.errors (stub), pyexpat.model (stub)
Analysis of http.server (Stub) queued. Dependencies: sys (stub), socketserver (stub), email (stub), email.message (stub)
Create compiled (scraped):  termios /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/termios.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of http (Library) queued. Dependencies: http (stub), enum
Analysis of json.decoder (Stub) queued. Dependencies: sys (stub)
Analysis of termios (Compiled) queued. Dependencies: termios (stub)
Analysis of termios (Stub) queued. Dependencies: 
Analysis of collections.abc (Library) queued. Dependencies: collections.abc (stub), _collections_abc
Analysis of quopri (Library) queued. Dependencies: quopri (stub), binascii, io, sys, getopt
Analysis of collections (Stub) queued. Dependencies: sys (stub), collections.abc (stub)
Analysis of quopri (Stub) queued. Dependencies: 
Analysis of operator (Stub) queued. Dependencies: sys (stub)
Analysis of posix (CompiledBuiltin) queued. Dependencies: posix (stub), os
Analysis of keyword (Stub) queued. Dependencies: 
Analysis of json.encoder (Stub) queued. Dependencies: 
Analysis of keyword (Library) queued. Dependencies: keyword (stub), sys, re
Analysis of heapq (Stub) queued. Dependencies: sys (stub)
Analysis of _heapq (Stub) queued. Dependencies: 
Analysis of email.base64mime (Library) queued. Dependencies: base64, binascii
Analysis of json.decoder (Library) queued. Dependencies: json.decoder (stub), re, json, json.scanner, _json
Import:  json.scanner /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/scanner.py 
Analysis of json (Stub) on depth 4 completed in 145.27 ms.
Analysis of urllib.parse (Library) queued. Dependencies: urllib.parse (stub), re, sys, collections, unicodedata
Analysis of datetime (Library) queued. Dependencies: datetime (stub), time, math, sys, _strptime, _datetime
Create compiled (scraped):  unicodedata /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/unicodedata.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of email._parseaddr (Library) queued. Dependencies: time, calendar
Analysis of _heapq (Compiled) queued. Dependencies: _heapq (stub)
Analysis of _weakrefset (Stub) on depth 6 completed in 221.43 ms.
Analysis of datetime (Stub) queued. Dependencies: sys (stub), time (stub)
Analysis of random (Library) queued. Dependencies: random (stub), warnings, types, math, os, _collections_abc, hashlib, itertools, bisect, _random, time
Analysis of marshal (CompiledBuiltin) queued. Dependencies: marshal (stub)
Analysis of doctest (Stub) queued. Dependencies: sys (stub), types (stub), unittest (stub)
Analysis of operator (Library) queued. Dependencies: operator (stub), functools, _operator
Import:  _strptime /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/_strptime.py 
Analysis of html.entities (Library) queued. Dependencies: html.entities (stub)
Create compiled (scraped):  _datetime /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_datetime.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Import:  hashlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/hashlib.py 
Import:  bisect /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/bisect.py 
Create compiled (scraped):  _random /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_random.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Create built-in compiled (scraped) module:  _operator /Users/Sedim/tmp/venv/bin/python3 
Analysis of pydoc_data.topics (Library) queued. Dependencies: 
Analysis of functools (Stub) on depth 5 completed in 62.7 ms.
Analysis of gc (Stub) on depth 7 completed in 1.36 ms.
Analysis of unicodedata (Stub) queued. Dependencies: 
Analysis of atexit (Stub) on depth 7 completed in 0.44 ms.
Analysis of __future__ (Stub) queued. Dependencies: sys (stub)
Analysis of tracemalloc (Stub) on depth 5 completed in 17.96 ms.
Analysis of __future__ (Library) queued. Dependencies: __future__ (stub)
Analysis of copy (Stub) on depth 5 completed in 0.85 ms.
Analysis of unicodedata (Compiled) queued. Dependencies: unicodedata (stub)
Analysis of json.scanner (Library) queued. Dependencies: re, _json
Analysis of difflib (Stub) queued. Dependencies: sys (stub)
Analysis of copyreg (Library) on depth 4 completed in 20.71 ms.
Analysis of _tracemalloc (Stub) on depth 6 completed in 0.41 ms.
Analysis of _weakref (Stub) on depth 5 completed in 1.33 ms.
Analysis of operator (Library) on depth 4 completed in 21.87 ms.
Analysis of _heapq (Compiled) on depth 5 completed in 0.55 ms.
Analysis of difflib (Library) queued. Dependencies: difflib (stub), heapq, collections, re, doctest
Analysis of pickle (Stub) on depth 6 completed in 2.38 ms.
Analysis of _warnings (Stub) on depth 5 completed in 0.34 ms.
Analysis of _compat_pickle (Library) on depth 6 completed in 1.9 ms.
Analysis of _thread (Stub) on depth 6 completed in 0.77 ms.
Analysis of email.quoprimime (Library) queued. Dependencies: re, string
Analysis of marshal (Stub) queued. Dependencies: 
Analysis of pdb (Stub) queued. Dependencies: sys (stub)
Analysis of itertools (Stub) on depth 5 completed in 12.9 ms.
Analysis of cmd (Stub) queued. Dependencies: 
Analysis of _pickle (Compiled) on depth 6 completed in 10.67 ms.
Analysis of _datetime (Compiled) queued. Dependencies: datetime
Analysis of hashlib (Stub) queued. Dependencies: sys (stub)
Analysis of hashlib (Library) queued. Dependencies: hashlib (stub), _sha1, _md5, _sha256, _sha512, _blake2, _sha3, _hashlib, logging
Analysis of bisect (Stub) queued. Dependencies: 
Analysis of bisect (Library) queued. Dependencies: bisect (stub), _bisect
Analysis of _random (Compiled) queued. Dependencies: _random (stub)
Analysis of code (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of zlib (Stub) queued. Dependencies: sys (stub)
Analysis of dis (Stub) queued. Dependencies: sys (stub), types (stub), opcode (stub)
Analysis of code (Library) queued. Dependencies: code (stub), sys, traceback, codeop, readline, argparse
Analysis of glob (Stub) queued. Dependencies: sys (stub)
Analysis of _operator (Stub) queued. Dependencies: sys (stub), operator (stub)
Analysis of _strptime (Library) queued. Dependencies: time, locale, calendar, re, datetime, _thread
Analysis of webbrowser (Stub) queued. Dependencies: sys (stub)
Create compiled (scraped):  _sha1 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha1.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of dis (Library) queued. Dependencies: dis (stub), sys, types, collections, io, opcode, argparse
Create compiled (scraped):  _md5 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_md5.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _sha1 (Compiled) queued. Dependencies: 
Analysis of shutil (Stub) queued. Dependencies: os (stub), sys (stub)
Analysis of keyword (Library) queued. Dependencies: keyword (stub), sys, re, io
Create compiled (scraped):  _sha256 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha256.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of glob (Library) queued. Dependencies: glob (stub), os, re, fnmatch
Analysis of email.feedparser (Stub) queued. Dependencies: sys (stub), email.message (stub), email.policy (stub)
Create compiled (scraped):  _sha512 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha512.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Create compiled (scraped):  _blake2 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_blake2.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _sha256 (Compiled) queued. Dependencies: 
Analysis of cmd (Library) queued. Dependencies: cmd (stub), string, sys, readline
Create compiled (scraped):  _sha3 /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha3.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _sha512 (Compiled) queued. Dependencies: 
Create compiled (scraped):  _hashlib /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_hashlib.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Create compiled (scraped):  _bisect /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bisect.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _blake2 (Compiled) queued. Dependencies: 
Analysis of _md5 (Compiled) queued. Dependencies: 
Analysis of email.feedparser (Library) queued. Dependencies: email.feedparser (stub), re, email, email.errors, email._policybase, collections, io, email.message
Analysis of _bisect (Stub) queued. Dependencies: 
Analysis of bdb (Library) queued. Dependencies: fnmatch, sys, os, inspect, linecache, reprlib
Analysis of _bisect (Compiled) queued. Dependencies: _bisect (stub)
Analysis of email._policybase (Library) queued. Dependencies: abc, email, email.header, email.charset, email.utils
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 opcode (Stub) queued. Dependencies: sys (stub)
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 keyword (Library) on depth 4 completed in 87.16 ms.
Analysis of email.message (Stub) queued. Dependencies: sys (stub), email.charset (stub), email.errors (stub), email.header (stub), email.policy (stub), email.contentmanager (stub)
Analysis of _hashlib (Compiled) queued. Dependencies: 
Import:  codeop /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/codeop.py 
Analysis of _sha3 (Compiled) queued. Dependencies: 
Import:  opcode /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/opcode.py 
Analysis of codeop (Stub) queued. Dependencies: types (stub)
Import:  uu /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/uu.py 
Import:  email._encoded_words /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/_encoded_words.py 
Analysis of uu (Stub) queued. Dependencies: sys (stub)
Import:  email.generator /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/generator.py 
Analysis of uu (Library) queued. Dependencies: uu (stub), binascii, os, sys, optparse
Import:  email.iterators /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/iterators.py 
Import:  email.policy /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/policy.py 
Import:  email.header /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/header.py 
Analysis of email._encoded_words (Library) queued. Dependencies: re, base64, binascii, functools, string, email, email.errors
Analysis of opcode (Library) queued. Dependencies: opcode (stub), _opcode
Analysis of email.iterators (Stub) queued. Dependencies: email.message (stub)
Analysis of email.policy (Library) queued. Dependencies: email.policy (stub), re, sys, email._policybase, email.utils, email.headerregistry, email.contentmanager, email.message
Analysis of codeop (Library) queued. Dependencies: codeop (stub), __future__
Import:  ast /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/ast.py 
Import:  optparse /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/optparse.py 
Analysis of ast (Stub) queued. Dependencies: _ast (stub)
Analysis of email.iterators (Library) queued. Dependencies: email.iterators (stub), sys, io
Analysis of email.generator (Library) queued. Dependencies: email.generator (stub), re, sys, time, random, copy, io, email.utils
Analysis of _operator (CompiledBuiltin) queued. Dependencies: _operator (stub), operator
Analysis of email.header (Library) queued. Dependencies: email.header (stub), re, binascii, email, email.quoprimime, email.base64mime, email.errors, email.charset
Analysis of optparse (Stub) queued. Dependencies: sys (stub)
Create compiled (scraped):  _opcode /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_opcode.cpython-37m-darwin.so /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload 
Analysis of _opcode (Compiled) queued. Dependencies: 
Analysis of email.generator (Stub) queued. Dependencies: email.message (stub), email.policy (stub)
Import:  email.headerregistry /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/headerregistry.py 
Analysis of email.headerregistry (Stub) queued. Dependencies: datetime (stub), email.errors (stub), email.policy (stub)
Import:  email.contentmanager /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/contentmanager.py 
Analysis of inspect (Stub) queued. Dependencies: sys (stub), types (stub)
Analysis of ast (Library) queued. Dependencies: ast (stub), _ast, inspect, collections
Analysis of _ast (Stub) queued. Dependencies: sys (stub)
Analysis of email.contentmanager (Library) queued. Dependencies: email.contentmanager (stub), binascii, email, email.charset, email.message, email.errors, email.quoprimime
Analysis of optparse (Library) queued. Dependencies: optparse (stub), sys, os, textwrap, gettext
Analysis of array (Stub) on depth 6 completed in 156.33 ms.
Analysis of email.headerregistry (Library) queued. Dependencies: email.headerregistry (stub), types, email, email.utils, email.errors, email._header_value_parser
Analysis of pprint (Stub) on depth 7 completed in 4.39 ms.
Create built-in compiled (scraped) module:  _ast /Users/Sedim/tmp/venv/bin/python3 
Analysis of __future__ (Library) on depth 6 completed in 4.17 ms.
Import:  email._header_value_parser /usr/local/Cellar/python/3.7.4_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/email/_header_value_parser.py 
Analysis of _ast (CompiledBuiltin) queued. Dependencies: _ast (stub)
Analysis of email._header_value_parser (Library) queued. Dependencies: re, sys, urllib, string, collections, operator, email, email._encoded_words, email.errors, email.utils
Analysis of difflib (Library) on depth 6 completed in 69.69 ms.
Analysis of inspect (Library) on depth 6 completed in 132.08 ms.
Analysis of _signal (CompiledBuiltin) on depth 6 completed in 0.75 ms.
Analysis of textwrap (Stub) on depth 8 completed in 1.44 ms.
Analysis of gettext (Stub) on depth 8 completed in 2.28 ms.
Analysis of encodings.aliases (Library) on depth 5 completed in 3.25 ms.
Analysis of errno (Stub) on depth 6 completed in 3.47 ms.
Analysis of argparse (Stub) on depth 7 completed in 17.31 ms.
Analysis of decimal (Stub) on depth 7 completed in 17.34 ms.
Analysis of _io (CompiledBuiltin) on depth 5 completed in 17.7 ms.
Analysis of _string (CompiledBuiltin) on depth 6 completed in 0.09 ms.
Analysis of _struct (Compiled) on depth 7 completed in 6.72 ms.
Analysis of string (Stub) on depth 6 completed in 7.58 ms.
Analysis of mmap (Stub) on depth 6 completed in 9.06 ms.
Analysis of encodings (Stub) on depth 5 completed in 0.23 ms.
Analysis of fnmatch (Stub) on depth 6 completed in 0.64 ms.
Analysis of encodings.mbcs (Library) on depth 5 completed in 1.24 ms.
Analysis of stat (Stub) on depth 5 completed in 0.93 ms.
Analysis of posixpath (Stub) on depth 5 completed in 1.41 ms.
Analysis of pwd (Stub) on depth 6 completed in 0.74 ms.
Analysis of linecache (Stub) on depth 5 completed in 0.64 ms.
Analysis of _stat (Stub) on depth 6 completed in 1.75 ms.
Analysis of bdb (Library) on depth 7 completed in 13.33 ms.
Analysis of cmd (Library) on depth 7 completed in 13.32 ms.
Analysis of glob (Library) on depth 7 completed in 2.23 ms.
Analysis of code (Library) on depth 7 completed in 7.42 ms.
Analysis of token (Stub) on depth 7 completed in 7.67 ms.
Analysis of getopt (Stub) on depth 8 completed in 0.53 ms.
Analysis of dis (Library) on depth 7 completed in 12.32 ms.
Analysis of posix (CompiledBuiltin) on depth 4 completed in 13.17 ms.
Analysis of importlib._bootstrap (Library) on depth 8 completed in 15.8 ms.
Analysis of urllib (Library) on depth 8 completed in 0.01 ms.
Analysis of urllib.parse (Library) on depth 8 completed in 16.73 ms.
Analysis of importlib._bootstrap_external (Library) on depth 8 completed in 21.3 ms.
Analysis of tempfile (Library) on depth 8 completed in 10.29 ms.
Analysis of pydoc_data (Library) on depth 8 completed in 0.02 ms.
Analysis of pydoc_data.topics (Library) on depth 8 completed in 0.21 ms.
Analysis of pkgutil (Library) queued. Dependencies: pkgutil (stub), collections, functools, importlib, importlib.util, importlib.machinery, os, sys, types, warnings, marshal, inspect, zipimport, io
Analysis of http (Library) on depth 8 completed in 0.56 ms.
Analysis of pkgutil (Library) on depth 8 completed in 14.22 ms.
Analysis of platform (Library) queued. Dependencies: platform (stub), collections, sys, os, re, subprocess, warnings, plistlib, socket, struct, io
Analysis of email.message (Library) on depth 8 completed in 23.22 ms.
Analysis of runpy (Stub) on depth 8 completed in 0.39 ms.
Analysis of shlex (Stub) on depth 8 completed in 0.76 ms.
Analysis of platform (Library) on depth 8 completed in 18.64 ms.
Analysis of readline (Stub) on depth 8 completed in 1.86 ms.
Analysis of tty (Library) on depth 8 completed in 0.5 ms.
Analysis of math (Stub) on depth 7 completed in 2.87 ms.
Analysis of email.feedparser (Library) on depth 10 completed in 8.01 ms.
Analysis of email._policybase (Library) on depth 10 completed in 3.1 ms.
Analysis of email.utils (Library) on depth 9 completed in 4 ms.
Analysis of email.errors (Stub) on depth 11 completed in 0.85 ms.
Analysis of email.contentmanager (Stub) on depth 11 completed in 0.38 ms.
Analysis of binascii (Stub) on depth 10 completed in 0.56 ms.
Analysis of email.charset (Stub) on depth 12 completed in 0.77 ms.
Analysis of _socket (Compiled) on depth 10 completed in 5.82 ms.
Analysis of zlib (Compiled) on depth 10 completed in 2.97 ms.
Analysis of mimetypes (Stub) on depth 10 completed in 1.02 ms.
Analysis of py_compile (Stub) on depth 12 completed in 0.48 ms.
Analysis of _ssl (Compiled) on depth 11 completed in 10.47 ms.
Analysis of grp (Stub) on depth 11 completed in 0.22 ms.
Analysis of posix (Stub) on depth 14 completed in 0.37 ms.
Analysis of _lzma (Compiled) on depth 11 completed in 1.35 ms.
Analysis of _bz2 (Compiled) on depth 11 completed in 10.73 ms.
Analysis of sre_parse (Library) on depth 4 completed in 17.17 ms.
Analysis of datetime (Library) on depth 9 completed in 48.53 ms.
Analysis of sre_constants (Stub) on depth 5 completed in 4.29 ms.
Analysis of html (Library) on depth 9 completed in 1.36 ms.
Analysis of base64 (Stub) on depth 10 completed in 2.27 ms.
Analysis of _sre (CompiledBuiltin) on depth 5 completed in 0.3 ms.
Analysis of ntpath (Stub) on depth 5 completed in 3.87 ms.
Analysis of _importlib_modulespec (Stub) on depth 6 completed in 1.59 ms.
Analysis of _codecs (Stub) on depth 5 completed in 2.67 ms.
Analysis of _posixsubprocess (Stub) on depth 6 completed in 0.35 ms.
Analysis of enum (Stub) on depth 5 completed in 5.59 ms.
Analysis of select (Stub) on depth 6 completed in 3.97 ms.
Analysis of gc (CompiledBuiltin) on depth 6 completed in 9.25 ms.
Analysis of _weakref (CompiledBuiltin) on depth 4 completed in 9.36 ms.
Analysis of atexit (CompiledBuiltin) on depth 6 completed in 0.2 ms.
Analysis of _tracemalloc (CompiledBuiltin) on depth 5 completed in 1.44 ms.
Analysis of _warnings (CompiledBuiltin) on depth 4 completed in 2.46 ms.
Analysis of struct (Stub) on depth 7 completed in 1.49 ms.
Analysis of _thread (CompiledBuiltin) on depth 5 completed in 1.22 ms.
Analysis of itertools (CompiledBuiltin) on depth 4 completed in 7.48 ms.
Analysis of reprlib (Stub) on depth 5 completed in 1.87 ms.
Analysis of errno (CompiledBuiltin) on depth 5 completed in 15.73 ms.
Analysis of locale (Stub) on depth 6 completed in 4.81 ms.
Analysis of encodings (Library) on depth 4 completed in 1.18 ms.
Analysis of pwd (CompiledBuiltin) on depth 5 completed in 2.1 ms.
Analysis of _stat (CompiledBuiltin) on depth 5 completed in 12.83 ms.
Analysis of binascii (Compiled) on depth 9 completed in 3.37 ms.
Analysis of email.header (Stub) on depth 11 completed in 0.57 ms.
Analysis of tokenize (Stub) on depth 6 completed in 4.36 ms.
Analysis of grp (Compiled) on depth 10 completed in 0.73 ms.
Analysis of readline (Compiled) on depth 7 completed in 0.41 ms.
Analysis of sre_constants (Library) queued. Dependencies: sre_constants (stub), _sre, io
Analysis of math (Compiled) on depth 6 completed in 1.63 ms.
Analysis of os.path (Stub) on depth 13 completed in 1.9 ms.
Analysis of sre_constants (Library) on depth 4 completed in 10.64 ms.
Analysis of _posixsubprocess (Compiled) on depth 5 completed in 0.1 ms.
Analysis of sre_parse (Stub) on depth 6 completed in 7.21 ms.
Analysis of types (Stub) on depth 5 completed in 4.48 ms.
Analysis of _codecs (CompiledBuiltin) on depth 4 completed in 0.68 ms.
Analysis of select (Compiled) on depth 5 completed in 7.02 ms.
Analysis of struct (Library) on depth 6 completed in 0.45 ms.
Analysis of socket (Stub) on depth 10 completed in 4.26 ms.
Analysis of reprlib (Library) on depth 4 completed in 6.05 ms.
Analysis of re (Stub) on depth 4 completed in 2.51 ms.
Analysis of email.policy (Stub) on depth 10 completed in 4.16 ms.
Analysis of warnings (Stub) on depth 4 completed in 0.97 ms.
Analysis of _weakrefset (Library) on depth 5 completed in 5.37 ms.
Analysis of contextlib (Stub) on depth 5 completed in 5.79 ms.
Analysis of weakref (Stub) on depth 6 completed in 5.02 ms.
Analysis of stat (Library) on depth 4 completed in 12 ms.
Analysis of sre_compile (Stub) on depth 5 completed in 1.03 ms.
Analysis of traceback (Stub) on depth 5 completed in 3.21 ms.
Analysis of time (Stub) on depth 6 completed in 7.14 ms.
Analysis of signal (Stub) on depth 6 completed in 1.83 ms.
Analysis of zipfile (Stub) on depth 11 completed in 2.1 ms.
Analysis of importlib.abc (Stub) on depth 10 completed in 4.51 ms.
Analysis of io (Stub) on depth 5 completed in 7.17 ms.
Analysis of threading (Stub) on depth 6 completed in 5.3 ms.
Analysis of tarfile (Stub) on depth 11 completed in 2.81 ms.
Analysis of codecs (Library) queued. Dependencies: codecs (stub), sys, _codecs, encodings, io
Analysis of codecs (Library) on depth 3 completed in 16.6 ms.
Analysis of email (Stub) on depth 9 completed in 0.58 ms.
Analysis of socketserver (Stub) on depth 10 completed in 4.21 ms.
Analysis of ssl (Stub) on depth 11 completed in 7.06 ms.
Analysis of _py_abc (Library) on depth 4 completed in 7.92 ms.
Analysis of _threading_local (Stub) on depth 7 completed in 0.9 ms.
Analysis of time (CompiledBuiltin) on depth 5 completed in 7.69 ms.
Analysis of calendar (Stub) on depth 12 completed in 10.78 ms.
Analysis of _compression (Stub) on depth 12 completed in 0.96 ms.
Analysis of importlib (Stub) on depth 9 completed in 2.57 ms.
Analysis of lzma (Stub) on depth 11 completed in 7.41 ms.
Analysis of bz2 (Stub) on depth 11 completed in 1.21 ms.
Analysis of logging (Stub) on depth 8 completed in 18.71 ms.
Analysis of email.parser (Stub) on depth 10 completed in 1.49 ms.
Analysis of sre_compile (Library) on depth 4 completed in 41.15 ms.
Analysis of http.client (Stub) on depth 10 completed in 9.34 ms.
Analysis of abc (Library) on depth 3 completed in 3.11 ms.
Analysis of importlib.machinery (Stub) on depth 9 completed in 3.17 ms.
Analysis of gzip (Stub) on depth 12 completed in 2.24 ms.
Analysis of signal (Library) on depth 5 completed in 46.27 ms.
Analysis of unittest (Stub) on depth 7 completed in 12.94 ms.
Analysis of _collections_abc (Library) on depth 4 completed in 24.42 ms.
Analysis of _imp (Stub) on depth 10 completed in 1.63 ms.
Analysis of _imp (CompiledBuiltin) on depth 9 completed in 0.63 ms.
Analysis of json (Library) on depth 3 completed in 6.04 ms.
Analysis of importlib.machinery (Library) on depth 8 completed in 6.79 ms.
Analysis of io (Library) on depth 4 completed in 10.81 ms.
Analysis of email.parser (Library) on depth 9 completed in 1.13 ms.
Analysis of email (Library) on depth 8 completed in 0.42 ms.
Analysis of _compression (Library) on depth 11 completed in 2.36 ms.
Analysis of subprocess (Library) on depth 4 completed in 23.57 ms.
Analysis of webbrowser (Library) on depth 8 completed in 18.29 ms.
Analysis of pydoc (Library) on depth 7 completed in 50.61 ms.
Analysis of pdb (Library) on depth 6 completed in 39.76 ms.
Analysis of doctest (Library) on depth 5 completed in 23.02 ms.
Analysis of heapq (Library) on depth 4 completed in 7.4 ms.
Analysis of collections (Library) on depth 3 completed in 24.22 ms.
Analysis of shlex (Library) on depth 7 completed in 7.16 ms.
Analysis of _collections (CompiledBuiltin) on depth 4 completed in 7.59 ms.
Analysis of tokenize (Library) on depth 5 completed in 16.82 ms.
Analysis of functools (Library) on depth 4 completed in 17.22 ms.
Analysis of selectors (Library) on depth 5 completed in 14.8 ms.
Analysis of _functools (CompiledBuiltin) on depth 5 completed in 0.26 ms.
Analysis of types (Library) on depth 5 completed in 6.99 ms.
Analysis of unittest.signals (Library) on depth 7 completed in 1.39 ms.
Analysis of linecache (Library) on depth 4 completed in 0.49 ms.
Analysis of shutil (Library) on depth 9 completed in 12.74 ms.
Analysis of contextlib (Library) on depth 4 completed in 17.09 ms.
Analysis of ssl (Library) on depth 10 completed in 32.2 ms.
Analysis of socket (Library) on depth 9 completed in 42.96 ms.
Analysis of copy (Library) on depth 4 completed in 5.78 ms.
Analysis of traceback (Library) on depth 4 completed in 6.34 ms.
Analysis of socketserver (Library) on depth 9 completed in 15.82 ms.
Analysis of tarfile (Library) on depth 10 completed in 37.21 ms.
Analysis of warnings (Library) on depth 3 completed in 20.97 ms.
Analysis of weakref (Library) on depth 5 completed in 20.98 ms.
Analysis of threading (Library) on depth 5 completed in 16.82 ms.
Analysis of zipfile (Library) on depth 10 completed in 48.83 ms.
Analysis of py_compile (Library) on depth 11 completed in 3.06 ms.
Analysis of http.client (Library) on depth 9 completed in 58.64 ms.
Analysis of enum (Library) on depth 4 completed in 20.96 ms.
Analysis of base64 (Library) on depth 9 completed in 6.34 ms.
Analysis of gzip (Library) on depth 11 completed in 8.56 ms.
Analysis of locale (Library) on depth 5 completed in 18 ms.
Analysis of importlib (Library) on depth 8 completed in 2.56 ms.
Analysis of importlib.util (Library) on depth 8 completed in 5.76 ms.
Analysis of logging (Library) on depth 8 completed in 20.3 ms.
Analysis of _locale (CompiledBuiltin) on depth 4 completed in 0.58 ms.
Analysis of _bootlocale (Library) on depth 6 completed in 0.42 ms.
Analysis of _threading_local (Library) on depth 6 completed in 1.19 ms.
Analysis of bz2 (Library) on depth 10 completed in 1.99 ms.
Analysis of calendar (Library) on depth 11 completed in 13.7 ms.
Analysis of re (Library) on depth 3 completed in 4.44 ms.
Analysis of http.server (Library) on depth 8 completed in 33.88 ms.
Analysis of pprint (Library) on depth 6 completed in 21.18 ms.
Analysis of runpy (Library) on depth 7 completed in 9.33 ms.
Analysis of string (Library) on depth 5 completed in 7.67 ms.
Analysis of token (Library) on depth 6 completed in 17.7 ms.
Analysis of unittest.case (Library) on depth 7 completed in 30.63 ms.
Analysis of posixpath (Library) on depth 4 completed in 11.35 ms.
Analysis of fnmatch (Library) on depth 5 completed in 0.57 ms.
Analysis of mimetypes (Library) on depth 9 completed in 2.31 ms.
Analysis of unittest.loader (Library) on depth 7 completed in 8.3 ms.
Analysis of textwrap (Library) on depth 7 completed in 4.47 ms.
Analysis of tracemalloc (Library) on depth 4 completed in 12.92 ms.
Analysis of unittest.main (Library) on depth 7 completed in 2.62 ms.
Analysis of unittest (Library) on depth 6 completed in 2.41 ms.
Analysis of unittest.runner (Library) on depth 7 completed in 8.64 ms.
Analysis of os (Library) on depth 3 completed in 20.13 ms.
Analysis of unittest.suite (Library) on depth 7 completed in 2.89 ms.
Analysis of unittest.util (Library) on depth 8 completed in 2.8 ms.
Analysis of getopt (Library) on depth 7 completed in 2.73 ms.
Analysis of unittest.result (Library) on depth 7 completed in 3.84 ms.
Analysis of ntpath (Library) on depth 4 completed in 10.31 ms.
Analysis of gettext (Library) on depth 7 completed in 13.19 ms.
Analysis of lzma (Library) on depth 10 completed in 4.19 ms.
Analysis of genericpath (Library) on depth 5 completed in 11.15 ms.
Analysis of argparse (Library) on depth 6 completed in 28.38 ms.
Analysis of pickle (Library) on depth 5 completed in 31.6 ms.
Analysis of tinydb.utils (Library) on depth 3 completed in 2.25 ms.
Analysis version 390 has been completed in 1663.18 ms with 247 entries analyzed and 85 entries skipped.
Analysis version 599 of 522 entries has started.
Analysis of abc (Stub) on depth 4 completed in 0.98 ms.
Analysis of _abc (CompiledBuiltin) on depth 4 completed for library in 0.99 ms.
Analysis of _weakrefset (Stub) on depth 6 completed in 3.47 ms.
Analysis of json.encoder (Stub) on depth 5 completed in 1.19 ms.
Analysis of gc (Stub) on depth 7 completed in 1.04 ms.
Analysis of _warnings (Stub) on depth 5 completed in 0.59 ms.
Analysis of copy (Stub) on depth 5 completed in 0.45 ms.
Analysis of _tracemalloc (Stub) on depth 6 completed in 0.48 ms.
Analysis of _compat_pickle (Library) on depth 6 completed for library in 2.85 ms.
Analysis of _pickle (Compiled) on depth 6 completed for library in 2.48 ms.
Analysis of itertools (Stub) on depth 5 completed in 6.17 ms.
Analysis of atexit (Stub) on depth 7 completed in 0.22 ms.
Analysis of textwrap (Stub) on depth 8 completed in 1.34 ms.
Analysis of copyreg (Library) on depth 4 completed for library in 1.33 ms.
Analysis of _thread (Stub) on depth 6 completed in 0.33 ms.
Analysis of gettext (Stub) on depth 8 completed in 1.43 ms.
Analysis of encodings.aliases (Library) on depth 5 completed for library in 2.5 ms.
Analysis of mmap (Stub) on depth 6 completed in 1.43 ms.
Analysis of _string (CompiledBuiltin) on depth 6 completed for library in 0.08 ms.
Analysis of _struct (Compiled) on depth 7 completed in 0.22 ms.
Analysis of fnmatch (Stub) on depth 6 completed in 0.16 ms.
Analysis of pwd (Stub) on depth 6 completed in 0.19 ms.
Analysis of _stat (Stub) on depth 6 completed in 3.16 ms.
Analysis of getopt (Stub) on depth 8 completed in 0.31 ms.
Analysis of decimal (Stub) on depth 7 completed in 9.85 ms.
Analysis of importlib._bootstrap (Library) on depth 8 completed for library in 12.54 ms.
Analysis of pydoc_data (Library) on depth 8 completed for library in 0.12 ms.
Analysis of pydoc_data.topics (Library) on depth 8 completed for library in 0.21 ms.
Analysis of runpy (Stub) on depth 8 completed in 0.39 ms.
Analysis of _io (CompiledBuiltin) on depth 4 completed in 11.58 ms.
Analysis of _socket (Compiled) on depth 10 completed for library in 12.02 ms.
Analysis of email.contentmanager (Stub) on depth 10 completed in 2.38 ms.
Analysis of email.charset (Stub) on depth 10 completed in 2.94 ms.
Analysis of _ssl (Compiled) on depth 11 completed for library in 11.78 ms.
Analysis of grp (Stub) on depth 11 completed in 0.71 ms.
Analysis of posix (Stub) on depth 5 completed in 1.16 ms.
Analysis of _lzma (Compiled) on depth 11 completed for library in 1.29 ms.
Analysis of _bz2 (Compiled) on depth 11 completed for library in 0.79 ms.
Analysis of sre_constants (Stub) on depth 5 completed in 5.83 ms.
Analysis of _sre (CompiledBuiltin) on depth 5 completed for library in 0.3 ms.
Analysis of _posixsubprocess (Stub) on depth 6 completed in 4.62 ms.
Analysis of html (Stub) on depth 10 completed in 0.27 ms.
Analysis of html.entities (Stub) on depth 11 completed in 0.24 ms.
Analysis of urllib (Stub) on depth 9 completed in 0.04 ms.
Analysis of tty (Stub) on depth 9 completed in 0.43 ms.
Analysis of pyexpat.model (Stub) on depth 12 completed in 0.06 ms.
Analysis of _json (Stub) on depth 6 completed in 0.86 ms.
Analysis of termios (Stub) on depth 10 completed in 7.44 ms.
Analysis of string (Stub) on depth 6 completed in 6.05 ms.
Analysis of quopri (Stub) on depth 10 completed in 0.71 ms.
Analysis of _heapq (Stub) on depth 6 completed in 1.43 ms.
Analysis of marshal (Stub) on depth 10 completed in 0.38 ms.
Analysis of unicodedata (Stub) on depth 10 completed in 1.88 ms.
Analysis of cmd (Stub) on depth 8 completed in 3.16 ms.
Analysis of _sha1 (Compiled) on depth 11 completed for library in 0.43 ms.
Analysis of _md5 (Compiled) on depth 11 completed for library in 1.18 ms.
Analysis of _sha256 (Compiled) on depth 11 completed for library in 0.76 ms.
Analysis of _sha512 (Compiled) on depth 11 completed for library in 7.94 ms.
Analysis of _blake2 (Compiled) on depth 11 completed for library in 0.77 ms.
Analysis of _sha3 (Compiled) on depth 11 completed for library in 1.64 ms.
Analysis of _hashlib (Compiled) on depth 11 completed for library in 0.52 ms.
Analysis of bisect (Stub) on depth 11 completed in 0.46 ms.
Analysis of _bisect (Stub) on depth 12 completed in 0.58 ms.
Analysis of _opcode (Compiled) on depth 9 completed for library in 0.21 ms.
Analysis of gc (CompiledBuiltin) on depth 6 completed for library in 2.27 ms.
Analysis of _warnings (CompiledBuiltin) on depth 4 completed for library in 0.48 ms.
Analysis of _tracemalloc (CompiledBuiltin) on depth 5 completed for library in 0.25 ms.
Analysis of itertools (CompiledBuiltin) on depth 4 completed for library in 5.51 ms.
Analysis of atexit (CompiledBuiltin) on depth 6 completed for library in 0.2 ms.
Analysis of importlib._bootstrap_external (Library) on depth 8 completed in 37.87 ms.
Analysis of email.errors (Stub) on depth 10 completed in 1.68 ms.
Analysis of keyword (Stub) on depth 5 completed in 1.92 ms.
Analysis of _thread (CompiledBuiltin) on depth 5 completed for library in 3.2 ms.
Analysis of pwd (CompiledBuiltin) on depth 5 completed for library in 1.36 ms.
Analysis of email.header (Stub) on depth 10 completed in 3.28 ms.
Analysis of grp (Compiled) on depth 10 completed for library in 1.23 ms.
Analysis of sre_parse (Stub) on depth 5 completed in 12.5 ms.
Analysis of io (Stub) on depth 5 completed in 16.32 ms.
Analysis of _posixsubprocess (Compiled) on depth 5 completed for library in 0.24 ms.
Analysis of _stat (CompiledBuiltin) on depth 5 completed for library in 20.01 ms.
Analysis of html.entities (Library) on depth 10 completed for library in 33.77 ms.
Analysis of urllib (Library) on depth 8 completed for library in 0.05 ms.
Analysis of _heapq (Compiled) on depth 5 completed for library in 0.36 ms.
Analysis of _json (Compiled) on depth 5 completed for library in 0.24 ms.
Analysis of marshal (CompiledBuiltin) on depth 9 completed for library in 0.85 ms.
Analysis of unicodedata (Compiled) on depth 9 completed for library in 1.46 ms.
Analysis of _bisect (Compiled) on depth 11 completed for library in 0.2 ms.
Analysis of os (Stub) on depth 4 completed in 30.36 ms.
Analysis of bisect (Library) on depth 10 completed for library in 0.89 ms.
Analysis of importlib.abc (Stub) on depth 5 completed in 5.14 ms.
Analysis of email.errors (Library) on depth 9 completed for library in 26.71 ms.
Analysis of sys (Stub) on depth 4 completed in 3.57 ms.
Analysis of _importlib_modulespec (Stub) on depth 6 completed in 2.79 ms.
Analysis of os.path (Stub) on depth 5 completed in 3.55 ms.
Analysis of codecs (Stub) on depth 4 completed in 6.59 ms.
Analysis of types (Stub) on depth 5 completed in 4.41 ms.
Analysis of mmap (Stub) on depth 6 completed in 1.42 ms.
Analysis of termios (Compiled) on depth 9 completed for library in 51.59 ms.
Analysis of tty (Library) on depth 8 completed for library in 5.13 ms.
Analysis of io (Stub) on depth 5 completed in 7.93 ms.
Analysis of os (Stub) on depth 4 completed in 12.41 ms.
Analysis of importlib.abc (Stub) on depth 5 completed in 1.66 ms.
Analysis of sys (Stub) on depth 4 completed in 1.57 ms.
Analysis of _importlib_modulespec (Stub) on depth 6 completed in 3.02 ms.
Analysis of os.path (Stub) on depth 5 completed in 3.84 ms.
Analysis of codecs (Stub) on depth 4 completed in 6.03 ms.
Analysis of types (Stub) on depth 5 completed in 3.88 ms.
Analysis of json.decoder (Stub) on depth 5 completed in 0.84 ms.
Analysis of _weakref (Stub) on depth 5 completed in 0.84 ms.
Analysis of traceback (Stub) on depth 5 completed in 2.17 ms.
Analysis of contextlib (Stub) on depth 5 completed in 2.37 ms.
Analysis of heapq (Stub) on depth 5 completed in 0.72 ms.
Analysis of pickle (Stub) on depth 6 completed in 1.51 ms.
Analysis of functools (Stub) on depth 5 completed in 3.41 ms.
Analysis of tracemalloc (Stub) on depth 5 completed in 1.77 ms.
Analysis of array (Stub) on depth 6 completed in 2.75 ms.
Analysis of pprint (Stub) on depth 7 completed in 1.44 ms.
Analysis of enum (Stub) on depth 5 completed in 2.97 ms.
Analysis of time (Stub) on depth 6 completed in 6.4 ms.
Analysis of errno (Stub) on depth 6 completed in 7.35 ms.
Analysis of locale (Stub) on depth 6 completed in 5.85 ms.
Analysis of argparse (Stub) on depth 7 completed in 14.98 ms.
Analysis of threading (Stub) on depth 6 completed in 8.91 ms.
Analysis of stat (Stub) on depth 5 completed in 0.44 ms.
Analysis of linecache (Stub) on depth 5 completed in 1.07 ms.
Analysis of posixpath (Stub) on depth 5 completed in 1.07 ms.
Analysis of pdb (Stub) on depth 7 completed in 0.45 ms.
Analysis of token (Stub) on depth 7 completed in 3.58 ms.
Analysis of subprocess (Stub) on depth 5 completed in 4.41 ms.
Analysis of collections (Stub) on depth 4 completed in 27.09 ms.
Analysis of shlex (Stub) on depth 8 completed in 1.22 ms.
Analysis of math (Stub) on depth 7 completed in 1.83 ms.
Analysis of readline (Stub) on depth 8 completed in 1.94 ms.
Analysis of webbrowser (Stub) on depth 9 completed in 6.41 ms.
Analysis of base64 (Stub) on depth 10 completed in 0.49 ms.
Analysis of email.policy (Stub) on depth 10 completed in 1.04 ms.
Analysis of mimetypes (Stub) on depth 10 completed in 0.73 ms.
Analysis of binascii (Stub) on depth 10 completed in 1.46 ms.
Analysis of py_compile (Stub) on depth 12 completed in 0.42 ms.
Analysis of zlib (Stub) on depth 11 completed in 0.59 ms.
Analysis of shutil (Stub) on depth 10 completed in 1.54 ms.
Analysis of lzma (Stub) on depth 11 completed in 0.87 ms.
Analysis of ntpath (Stub) on depth 5 completed in 0.48 ms.
Analysis of zipfile (Stub) on depth 11 completed in 1.13 ms.
Analysis of _codecs (Stub) on depth 5 completed in 1.53 ms.
Analysis of importlib (Stub) on depth 8 completed in 0.32 ms.
Analysis of sre_compile (Stub) on depth 5 completed in 0.25 ms.
Analysis of tarfile (Stub) on depth 11 completed in 5.43 ms.
Analysis of pkgutil (Stub) on depth 9 completed in 3.69 ms.
Analysis of _random (Stub) on depth 11 completed in 0.26 ms.
Analysis of bz2 (Stub) on depth 11 completed in 0.53 ms.
Analysis of tempfile (Stub) on depth 9 completed in 0.59 ms.
Analysis of select (Stub) on depth 6 completed in 0.94 ms.
Analysis of urllib.parse (Stub) on depth 9 completed in 3.62 ms.
Analysis of operator (Stub) on depth 5 completed in 4.57 ms.
Analysis of pyexpat.errors (Stub) on depth 12 completed in 0.2 ms.
Analysis of __future__ (Stub) on depth 7 completed in 4.1 ms.
Analysis of code (Stub) on depth 8 completed in 4.67 ms.
Analysis of glob (Stub) on depth 8 completed in 0.33 ms.
Analysis of difflib (Stub) on depth 7 completed in 1.94 ms.
Analysis of hashlib (Stub) on depth 11 completed in 1.59 ms.
Analysis of opcode (Stub) on depth 9 completed in 0.8 ms.
Analysis of inspect (Stub) on depth 7 completed in 4.75 ms.
Analysis of uu (Stub) on depth 10 completed in 0.43 ms.
Analysis of warnings (Stub) on depth 4 completed in 0.99 ms.
Analysis of codeop (Stub) on depth 9 completed in 0.57 ms.
Analysis of encodings (Stub) on depth 5 completed in 0.11 ms.
Analysis of _compression (Stub) on depth 12 completed in 15.36 ms.
Analysis of platform (Stub) on depth 9 completed in 1.15 ms.
Analysis of _weakref (CompiledBuiltin) on depth 4 completed for library in 0.24 ms.
Analysis of weakref (Stub) on depth 6 completed in 3 ms.
Analysis of json (Stub) on depth 4 completed in 5.22 ms.
Analysis of reprlib (Stub) on depth 5 completed in 0.98 ms.
Analysis of struct (Stub) on depth 7 completed in 0.85 ms.
Analysis of signal (Stub) on depth 6 completed in 1.71 ms.
Analysis of _ast (Stub) on depth 9 completed in 34.84 ms.
Analysis of socket (Stub) on depth 7 completed in 5.15 ms.
Analysis of plistlib (Stub) on depth 10 completed in 3.43 ms.
Analysis of optparse (Stub) on depth 11 completed in 7.59 ms.
Analysis of http (Stub) on depth 9 completed in 3.42 ms.
Analysis of zipimport (Stub) on depth 10 completed in 0.64 ms.
Analysis of re (Stub) on depth 4 completed in 1.71 ms.
Analysis of time (CompiledBuiltin) on depth 5 completed for library in 4.06 ms.
Analysis of datetime (Stub) on depth 10 completed in 8.98 ms.
Analysis of errno (CompiledBuiltin) on depth 5 completed for library in 18.32 ms.
Analysis of collections.abc (Stub) on depth 4 completed in 0.33 ms.
Analysis of math (Compiled) on depth 6 completed for library in 3.3 ms.
Analysis of readline (Compiled) on depth 7 completed for library in 0.37 ms.
Analysis of logging (Stub) on depth 8 completed in 6.75 ms.
Analysis of email.message (Stub) on depth 9 completed in 2.74 ms.
Analysis of stat (Library) on depth 4 completed for library in 11.98 ms.
Analysis of zlib (Compiled) on depth 10 completed for library in 12.46 ms.
Analysis of tokenize (Stub) on depth 6 completed in 1.63 ms.
Analysis of binascii (Compiled) on depth 9 completed for library in 1.47 ms.
Analysis of importlib.machinery (Stub) on depth 8 completed in 3.2 ms.
Analysis of _codecs (CompiledBuiltin) on depth 4 completed for library in 0.85 ms.
Analysis of _random (Compiled) on depth 10 completed for library in 0.65 ms.
Analysis of random (Stub) on depth 10 completed in 2.35 ms.
Analysis of select (Compiled) on depth 5 completed for library in 16.89 ms.
Analysis of _operator (Stub) on depth 6 completed in 0.36 ms.
Analysis of pyexpat (Stub) on depth 12 completed in 1.28 ms.
Analysis of __future__ (Library) on depth 6 completed for library in 2.25 ms.
Analysis of gzip (Stub) on depth 12 completed in 2.29 ms.
Analysis of dis (Stub) on depth 8 completed in 1.65 ms.
Analysis of opcode (Library) on depth 8 completed for library in 3.15 ms.
Analysis of _weakrefset (Library) on depth 5 completed for library in 4.38 ms.
Analysis of _threading_local (Stub) on depth 7 completed in 6.25 ms.
Analysis of reprlib (Library) on depth 4 completed for library in 3.59 ms.
Analysis of struct (Library) on depth 6 completed in 0.69 ms.
Analysis of ast (Stub) on depth 8 completed in 1.02 ms.
Analysis of _ast (CompiledBuiltin) on depth 8 completed for library in 55.07 ms.
Analysis of selectors (Stub) on depth 6 completed in 7.9 ms.
Analysis of zipimport (CompiledBuiltin) on depth 9 completed for library in 7.85 ms.
Analysis of socketserver (Stub) on depth 10 completed in 8.07 ms.
Analysis of ssl (Stub) on depth 11 completed in 9.71 ms.
Analysis of calendar (Stub) on depth 12 completed in 3.33 ms.
Analysis of email.utils (Stub) on depth 10 completed in 2.91 ms.
Analysis of email.contentmanager (Stub) on depth 10 completed in 0.51 ms.
Analysis of importlib.util (Stub) on depth 9 completed in 1.1 ms.
Analysis of xml.parsers.expat (Stub) on depth 11 completed in 2.7 ms.
Analysis of codeop (Library) on depth 8 completed for library in 5.82 ms.
Analysis of pyexpat (Compiled) on depth 11 completed for library in 6.04 ms.
Analysis of _struct (Compiled) on depth 7 completed for library in 0.29 ms.
Analysis of email.policy (Stub) on depth 10 completed in 1.54 ms.
Analysis of unittest (Stub) on depth 7 completed in 14.24 ms.
Analysis of _py_abc (Library) on depth 4 completed for library in 2.37 ms.
Analysis of importlib (Stub) on depth 8 completed in 0.46 ms.
Analysis of struct (Library) on depth 6 completed for library in 0.65 ms.
Analysis of collections (Stub) on depth 4 completed in 17.52 ms.
Analysis of email.message (Stub) on depth 9 completed in 4.04 ms.
Analysis of collections.abc (Stub) on depth 4 completed in 0.36 ms.
Analysis of importlib.machinery (Stub) on depth 8 completed in 2.42 ms.
Analysis of email (Stub) on depth 9 completed in 1.97 ms.
Analysis of email.feedparser (Stub) on depth 11 completed in 0.59 ms.
Analysis of abc (Library) on depth 3 completed for library in 2.23 ms.
Analysis of doctest (Stub) on depth 6 completed in 3.85 ms.
Analysis of email.generator (Stub) on depth 10 completed in 0.79 ms.
Analysis of email.headerregistry (Stub) on depth 11 completed in 4.19 ms.
Analysis of email.encoders (Stub) on depth 11 completed in 0.26 ms.
Analysis of email.iterators (Stub) on depth 10 completed in 0.33 ms.
Analysis of http.server (Stub) on depth 9 completed in 2.28 ms.
Analysis of http.client (Stub) on depth 10 completed in 7.75 ms.
Analysis of importlib.util (Stub) on depth 9 completed in 1.04 ms.
Analysis of email.parser (Stub) on depth 10 completed in 1.06 ms.
Analysis of importlib.abc (Library) on depth 9 completed in 8.28 ms.
Analysis of _imp (Stub) on depth 9 completed in 0.6 ms.
Analysis of _imp (CompiledBuiltin) on depth 8 completed for library in 0.32 ms.
Analysis of io (Library) on depth 4 completed in 14.59 ms.
Analysis of importlib.util (Library) on depth 8 completed in 7.87 ms.
Analysis of importlib.machinery (Library) on depth 7 completed in 11.08 ms.
Analysis of py_compile (Library) on depth 11 completed in 3.79 ms.
Analysis of _io (CompiledBuiltin) on depth 4 completed for library in 9.28 ms.
Analysis of io (Library) on depth 4 completed for library in 6.98 ms.
Analysis of sre_constants (Library) on depth 4 completed for library in 4.6 ms.
Analysis of _compression (Library) on depth 11 completed for library in 1.45 ms.
Analysis of zipfile (Library) on depth 10 completed in 20.23 ms.
Analysis of shutil (Library) on depth 9 completed in 9.34 ms.
Analysis of webbrowser (Library) on depth 8 completed in 8.84 ms.
Analysis of tarfile (Library) on depth 10 completed in 28.43 ms.
Analysis of pydoc (Library) on depth 7 completed in 47.99 ms.
Analysis of pdb (Library) on depth 6 completed in 25.08 ms.
Analysis of doctest (Library) on depth 5 completed in 18.54 ms.
Analysis of heapq (Library) on depth 4 completed in 1.52 ms.
Analysis of difflib (Library) on depth 6 completed in 14.75 ms.
Analysis of collections (Library) on depth 3 completed in 21.2 ms.
Analysis of _collections (CompiledBuiltin) on depth 4 completed in 0.74 ms.
Analysis of functools (Library) on depth 4 completed in 10.13 ms.
Analysis of selectors (Library) on depth 5 completed in 11.1 ms.
Analysis of unittest.case (Library) on depth 7 completed in 28.41 ms.
Analysis of platform (Library) on depth 8 completed in 17.72 ms.
Analysis of urllib.parse (Library) on depth 8 completed in 19.59 ms.
Analysis of ssl (Library) on depth 10 completed in 34.59 ms.
Analysis of _functools (CompiledBuiltin) on depth 5 completed in 0.18 ms.
Analysis of operator (Library) on depth 4 completed in 11.88 ms.
Analysis of types (Library) on depth 4 completed in 8.42 ms.
Analysis of subprocess (Library) on depth 4 completed in 35.25 ms.
Analysis of ast (Library) on depth 7 completed in 52.08 ms.
Analysis of email._header_value_parser (Library) on depth 11 completed in 57.41 ms.
Analysis of socketserver (Library) on depth 9 completed in 17.21 ms.
Analysis of _operator (CompiledBuiltin) on depth 5 completed in 3.86 ms.
Analysis of mimetypes (Library) on depth 9 completed in 6.33 ms.
Analysis of unittest.loader (Library) on depth 7 completed in 17.46 ms.
Analysis of sys (CompiledBuiltin) on depth 3 completed in 14.73 ms.
Analysis of copy (Library) on depth 4 completed in 2.62 ms.
Analysis of socket (Library) on depth 9 completed in 52.63 ms.
Analysis of os (Library) on depth 3 completed in 29.29 ms.
Analysis of inspect (Library) on depth 6 completed in 33.29 ms.
Analysis of encodings (Library) on depth 4 completed in 2.57 ms.
Analysis of unittest.main (Library) on depth 7 completed in 5.29 ms.
Analysis of email.iterators (Library) on depth 9 completed in 0.36 ms.
Analysis of email.headerregistry (Library) on depth 10 completed in 12.83 ms.
Analysis of xml.parsers.expat (Library) on depth 10 completed in 2.08 ms.
Analysis of _collections_abc (Library) on depth 4 completed in 17.76 ms.
Analysis of weakref (Library) on depth 5 completed in 17.17 ms.
Analysis of shlex (Library) on depth 7 completed in 3.2 ms.
Analysis of unittest.util (Library) on depth 8 completed in 3.48 ms.
Analysis of glob (Library) on depth 7 completed in 1.22 ms.
Analysis of genericpath (Library) on depth 5 completed in 2.69 ms.
Analysis of getopt (Library) on depth 7 completed in 2.13 ms.
Analysis of bz2 (Library) on depth 10 completed in 3.96 ms.
Analysis of ntpath (Library) on depth 4 completed in 9.52 ms.
Analysis of lzma (Library) on depth 10 completed in 9.58 ms.
Analysis of posix (CompiledBuiltin) on depth 4 completed in 13.63 ms.
Analysis of random (Library) on depth 9 completed in 6.86 ms.
Analysis of gzip (Library) on depth 11 completed in 10.2 ms.
Analysis of plistlib (Library) on depth 9 completed in 16.18 ms.
Analysis of pkgutil (Library) on depth 8 completed in 9.58 ms.
Analysis of bdb (Library) on depth 7 completed in 8.97 ms.
Analysis of optparse (Library) on depth 10 completed in 21.19 ms.
Analysis of unittest (Library) on depth 6 completed in 11.05 ms.
Analysis of email.policy (Library) on depth 9 completed in 11.19 ms.
Analysis of codecs (Library) on depth 3 completed in 11.79 ms.
Analysis of collections.abc (Library) on depth 3 completed in 9.33 ms.
Analysis of contextlib (Library) on depth 4 completed in 14.12 ms.
Analysis of quopri (Library) on depth 9 completed in 2.04 ms.
Analysis of base64 (Library) on depth 9 completed in 4.72 ms.
Analysis of posixpath (Library) on depth 4 completed in 5.25 ms.
Analysis of tempfile (Library) on depth 8 completed in 10.34 ms.
Analysis of runpy (Library) on depth 7 completed in 3.49 ms.
Analysis of unittest.result (Library) on depth 7 completed in 3.55 ms.
Analysis of uu (Library) on depth 9 completed in 3.57 ms.
Analysis of unittest.suite (Library) on depth 7 completed in 4.14 ms.
Analysis of encodings.mbcs (Library) on depth 5 completed in 0.5 ms.
Analysis of email.encoders (Library) on depth 10 completed in 0.66 ms.
Analysis of fnmatch (Library) on depth 5 completed in 0.61 ms.
Analysis of unittest.runner (Library) on depth 7 completed in 3.34 ms.
Analysis of email.message (Library) on depth 8 completed in 13.26 ms.
Analysis of email.base64mime (Library) on depth 10 completed in 3.7 ms.
Analysis of tracemalloc (Library) on depth 4 completed in 9.01 ms.
Analysis of email.contentmanager (Library) on depth 10 completed in 6.82 ms.
Analysis of email.feedparser (Library) on depth 10 completed in 8.23 ms.
Analysis of warnings (Library) on depth 3 completed in 12.36 ms.
Analysis of importlib (Library) on depth 7 completed in 1 ms.
Analysis of email.parser (Library) on depth 9 completed in 1.5 ms.
Analysis of enum (Library) on depth 4 completed in 15.66 ms.
Analysis of sre_parse (Library) on depth 4 completed in 17.69 ms.
Analysis of email (Library) on depth 8 completed in 0.69 ms.
Analysis of http (Library) on depth 8 completed in 4.91 ms.
Analysis of http.client (Library) on depth 9 completed in 36.63 ms.
Analysis of email.charset (Library) on depth 9 completed in 1.61 ms.
Analysis of email._encoded_words (Library) on depth 9 completed in 8.25 ms.
Analysis of email.header (Library) on depth 10 completed in 5.18 ms.
Analysis of sre_compile (Library) on depth 4 completed in 19.62 ms.
Analysis of signal (Library) on depth 5 completed in 36.33 ms.
Analysis of http.server (Library) on depth 8 completed in 28.94 ms.
Analysis of unittest.signals (Library) on depth 7 completed in 1.04 ms.
Analysis of _signal (CompiledBuiltin) on depth 6 completed in 0.25 ms.
Analysis of email.utils (Library) on depth 9 completed in 3.12 ms.
Analysis of email.generator (Library) on depth 9 completed in 8.43 ms.
Analysis of re (Library) on depth 3 completed in 12.3 ms.
Analysis of email._policybase (Library) on depth 9 completed in 2.82 ms.
Analysis of textwrap (Library) on depth 7 completed in 1.99 ms.
Analysis of keyword (Library) on depth 4 completed in 1.13 ms.
Analysis of pprint (Library) on depth 6 completed in 11.47 ms.
Analysis of token (Library) on depth 6 completed in 14.33 ms.
Analysis of email.quoprimime (Library) on depth 10 completed in 6.63 ms.
Analysis of _strptime (Library) on depth 10 completed in 6.07 ms.
Analysis of locale (Library) on depth 5 completed in 35.24 ms.
Analysis of tokenize (Library) on depth 5 completed in 22.27 ms.
Analysis of string (Library) on depth 5 completed in 5.99 ms.
Analysis of html (Library) on depth 9 completed in 2.2 ms.
Analysis of gettext (Library) on depth 7 completed in 12.54 ms.
Analysis of linecache (Library) on depth 4 completed in 0.43 ms.
Analysis of cmd (Library) on depth 7 completed in 0.64 ms.
Analysis of datetime (Library) on depth 9 completed in 22.13 ms.
Analysis of _locale (CompiledBuiltin) on depth 4 completed in 0.48 ms.
Analysis of _bootlocale (Library) on depth 6 completed in 0.46 ms.
Analysis of argparse (Library) on depth 6 completed in 20.07 ms.
Analysis of traceback (Library) on depth 4 completed in 10.69 ms.
Analysis of calendar (Library) on depth 11 completed in 8.53 ms.
Analysis of _datetime (Compiled) on depth 10 completed in 0.55 ms.
Analysis of pickle (Library) on depth 5 completed in 34.58 ms.
Analysis of email._parseaddr (Library) on depth 10 completed in 5.24 ms.
Analysis of dis (Library) on depth 7 completed in 5.34 ms.
Analysis of code (Library) on depth 7 completed in 2.09 ms.
Analysis of threading (Library) on depth 5 completed in 7.03 ms.
Analysis of _threading_local (Library) on depth 6 completed in 0.79 ms.
Analysis of logging (Library) on depth 8 completed in 15.34 ms.
Analysis of hashlib (Library) on depth 10 completed in 3.13 ms.
Analysis of importlib._bootstrap_external (Library) on depth 8 completed for library in 16.91 ms.
Analysis of importlib.abc (Library) on depth 9 completed for library in 7.74 ms.
Analysis of importlib.util (Library) on depth 8 completed for library in 2.41 ms.
Analysis of py_compile (Library) on depth 11 completed for library in 1.6 ms.
Analysis of importlib.machinery (Library) on depth 7 completed for library in 6.62 ms.
Analysis of zipfile (Library) on depth 10 completed for library in 28.48 ms.
Analysis of shutil (Library) on depth 9 completed for library in 9.49 ms.
Analysis of webbrowser (Library) on depth 8 completed for library in 11.8 ms.
Analysis of tarfile (Library) on depth 10 completed for library in 38.5 ms.
Analysis of pydoc (Library) on depth 7 completed for library in 50.97 ms.
Analysis of pdb (Library) on depth 6 completed for library in 25.91 ms.
Analysis of doctest (Library) on depth 5 completed for library in 21.21 ms.
Analysis of heapq (Library) on depth 4 completed for library in 3.78 ms.
Analysis of difflib (Library) on depth 6 completed for library in 19.44 ms.
Analysis of unittest.case (Library) on depth 7 completed for library in 26.22 ms.
Analysis of collections (Library) on depth 3 completed for library in 51.84 ms.
Analysis of _collections (CompiledBuiltin) on depth 4 completed for library in 1.17 ms.
Analysis of functools (Library) on depth 4 completed for library in 7.14 ms.
Analysis of selectors (Library) on depth 5 completed for library in 11.72 ms.
Analysis of unittest.loader (Library) on depth 7 completed for library in 13.31 ms.
Analysis of platform (Library) on depth 8 completed for library in 9.46 ms.
Analysis of urllib.parse (Library) on depth 8 completed for library in 11.7 ms.
Analysis of ssl (Library) on depth 10 completed for library in 17.01 ms.
Analysis of _functools (CompiledBuiltin) on depth 5 completed for library in 0.19 ms.
Analysis of types (Library) on depth 4 completed for library in 5.82 ms.
Analysis of operator (Library) on depth 4 completed for library in 6.18 ms.
Analysis of subprocess (Library) on depth 4 completed for library in 27.59 ms.
Analysis of email._header_value_parser (Library) on depth 11 completed for library in 45.06 ms.
Analysis of socketserver (Library) on depth 9 completed for library in 18.07 ms.
Analysis of ast (Library) on depth 7 completed for library in 54.37 ms.
Analysis of unittest.main (Library) on depth 7 completed for library in 3.06 ms.
Analysis of mimetypes (Library) on depth 9 completed for library in 3.25 ms.
Analysis of _operator (CompiledBuiltin) on depth 5 completed for library in 1.94 ms.
Analysis of copy (Library) on depth 4 completed for library in 3.36 ms.
Analysis of sys (CompiledBuiltin) on depth 3 completed for library in 15.06 ms.
Analysis of socket (Library) on depth 9 completed for library in 44.13 ms.
Analysis of os (Library) on depth 3 completed for library in 27.19 ms.
Analysis of email.headerregistry (Library) on depth 10 completed for library in 6.4 ms.
Analysis of weakref (Library) on depth 5 completed for library in 9.91 ms.
Analysis of encodings (Library) on depth 4 completed for library in 1.76 ms.
Analysis of xml.parsers.expat (Library) on depth 10 completed for library in 1.24 ms.
Analysis of email.iterators (Library) on depth 9 completed for library in 0.22 ms.
Analysis of unittest.util (Library) on depth 8 completed for library in 1.64 ms.
Analysis of genericpath (Library) on depth 5 completed for library in 2.42 ms.
Analysis of glob (Library) on depth 7 completed for library in 0.69 ms.
Analysis of shlex (Library) on depth 7 completed for library in 0.72 ms.
Analysis of getopt (Library) on depth 7 completed for library in 0.88 ms.
Analysis of posix (CompiledBuiltin) on depth 4 completed for library in 6.82 ms.
Analysis of inspect (Library) on depth 6 completed for library in 24.58 ms.
Analysis of ntpath (Library) on depth 4 completed for library in 5.86 ms.
Analysis of unittest (Library) on depth 6 completed for library in 2.24 ms.
Analysis of lzma (Library) on depth 10 completed for library in 5.21 ms.
Analysis of _collections_abc (Library) on depth 4 completed for library in 16.89 ms.
Analysis of bz2 (Library) on depth 10 completed for library in 2.3 ms.
Analysis of plistlib (Library) on depth 9 completed for library in 16.28 ms.
Analysis of email.policy (Library) on depth 9 completed for library in 1.79 ms.
Analysis of gzip (Library) on depth 11 completed for library in 5.82 ms.
Analysis of random (Library) on depth 9 completed for library in 7.11 ms.
Analysis of codecs (Library) on depth 3 completed for library in 11.85 ms.
Analysis of quopri (Library) on depth 9 completed for library in 2.51 ms.
Analysis of optparse (Library) on depth 10 completed for library in 8.75 ms.
Analysis of bdb (Library) on depth 7 completed for library in 4.9 ms.
Analysis of posixpath (Library) on depth 4 completed for library in 5.09 ms.
Analysis of unittest.result (Library) on depth 7 completed for library in 4.8 ms.
Analysis of unittest.runner (Library) on depth 7 completed for library in 5.22 ms.
Analysis of base64 (Library) on depth 9 completed for library in 5.62 ms.
Analysis of pkgutil (Library) on depth 8 completed for library in 4.71 ms.
Analysis of contextlib (Library) on depth 4 completed for library in 14.49 ms.
Analysis of unittest.suite (Library) on depth 7 completed for library in 9.93 ms.
Analysis of tempfile (Library) on depth 8 completed for library in 7.57 ms.
Analysis of email.encoders (Library) on depth 10 completed for library in 3.55 ms.
Analysis of collections.abc (Library) on depth 3 completed for library in 10.97 ms.
Analysis of uu (Library) on depth 9 completed for library in 3.46 ms.
Analysis of email.base64mime (Library) on depth 10 completed for library in 1.03 ms.
Analysis of email.message (Library) on depth 8 completed for library in 7.54 ms.
Analysis of runpy (Library) on depth 7 completed for library in 3.13 ms.
Analysis of encodings.mbcs (Library) on depth 5 completed for library in 0.59 ms.
Analysis of fnmatch (Library) on depth 5 completed for library in 0.66 ms.
Analysis of email.feedparser (Library) on depth 10 completed for library in 3.36 ms.
Analysis of http.client (Library) on depth 9 completed for library in 20.95 ms.
Analysis of email.contentmanager (Library) on depth 10 completed for library in 4.43 ms.
Analysis of tracemalloc (Library) on depth 4 completed for library in 7.28 ms.
Analysis of email.parser (Library) on depth 9 completed for library in 2.13 ms.
Analysis of http.server (Library) on depth 8 completed for library in 18.48 ms.
Analysis of email (Library) on depth 8 completed for library in 0.77 ms.
Analysis of email.header (Library) on depth 10 completed for library in 6.29 ms.
Analysis of warnings (Library) on depth 3 completed for library in 7.79 ms.
Analysis of email.charset (Library) on depth 9 completed for library in 0.6 ms.
Analysis of email._policybase (Library) on depth 9 completed for library in 1.62 ms.
Analysis of email._encoded_words (Library) on depth 9 completed for library in 1.79 ms.
Analysis of sre_parse (Library) on depth 4 completed for library in 10.42 ms.
Analysis of enum (Library) on depth 4 completed for library in 10.45 ms.
Analysis of importlib (Library) on depth 7 completed for library in 0.55 ms.
Analysis of email.utils (Library) on depth 9 completed for library in 1.03 ms.
Analysis of sre_compile (Library) on depth 4 completed for library in 7.54 ms.
Analysis of re (Library) on depth 3 completed for library in 3.36 ms.
Analysis of keyword (Library) on depth 4 completed for library in 1.03 ms.
Analysis of pprint (Library) on depth 6 completed for library in 8.81 ms.
Analysis of textwrap (Library) on depth 7 completed for library in 3.34 ms.
Analysis of signal (Library) on depth 5 completed for library in 21.1 ms.
Analysis of http (Library) on depth 8 completed for library in 1.33 ms.
Analysis of email.generator (Library) on depth 9 completed for library in 5.66 ms.
Analysis of locale (Library) on depth 5 completed for library in 19.82 ms.
Analysis of email.quoprimime (Library) on depth 10 completed for library in 3.03 ms.
Analysis of string (Library) on depth 5 completed for library in 4.64 ms.
Analysis of token (Library) on depth 6 completed for library in 9.37 ms.
Analysis of _strptime (Library) on depth 10 completed for library in 11.37 ms.
Analysis of html (Library) on depth 9 completed for library in 0.95 ms.
Analysis of unittest.signals (Library) on depth 7 completed for library in 0.71 ms.
Analysis of _signal (CompiledBuiltin) on depth 6 completed for library in 0.44 ms.
Analysis of gettext (Library) on depth 7 completed for library in 8 ms.
Analysis of _locale (CompiledBuiltin) on depth 4 completed for library in 0.42 ms.
Analysis of _bootlocale (Library) on depth 6 completed for library in 0.44 ms.
Analysis of cmd (Library) on depth 7 completed for library in 0.93 ms.
Analysis of tokenize (Library) on depth 5 completed for library in 12.22 ms.
Analysis of linecache (Library) on depth 4 completed for library in 0.98 ms.
Analysis of traceback (Library) on depth 4 completed for library in 3.4 ms.
Analysis of code (Library) on depth 7 completed for library in 3.17 ms.
Analysis of threading (Library) on depth 5 completed for library in 8.99 ms.
Analysis of datetime (Library) on depth 9 completed for library in 20.28 ms.
Analysis of _threading_local (Library) on depth 6 completed for library in 2.26 ms.
Analysis of _datetime (Compiled) on depth 10 completed for library in 0.17 ms.
Analysis of calendar (Library) on depth 11 completed for library in 17.16 ms.
Analysis of argparse (Library) on depth 6 completed for library in 24.61 ms.
Analysis of logging (Library) on depth 8 completed for library in 24.85 ms.
Analysis of email._parseaddr (Library) on depth 10 completed for library in 7.92 ms.
Analysis of dis (Library) on depth 7 completed for library in 8.57 ms.
Analysis of hashlib (Library) on depth 10 completed for library in 3.72 ms.
Analysis of pickle (Library) on depth 5 completed for library in 23.9 ms.
Analysis of json.scanner (Library) on depth 5 completed for library in 1.13 ms.
Analysis of tinydb.utils (Library) on depth 3 completed for library in 3.2 ms.
Analysis of json.encoder (Library) on depth 4 completed for library in 6.79 ms.
Analysis of json (Library) on depth 3 completed in 0.81 ms.
Analysis of tinydb.queries (Library) on depth 2 completed for library in 5.46 ms.
Analysis of json.decoder (Library) on depth 4 completed in 3.05 ms.
Analysis of json (Library) on depth 3 completed for library in 0.71 ms.
Analysis of json.decoder (Library) on depth 4 completed for library in 2.55 ms.
Analysis of tinydb.storages (Library) on depth 2 completed for library in 2.14 ms.
Analysis of tinydb (Library) on depth 1 completed in 0.25 ms.
Analysis of tinydb.database (Library) on depth 2 completed in 4.98 ms.
Analysis of tinydb (Library) on depth 1 completed for library in 0.25 ms.
Analysis of tinydb.database (Library) on depth 2 completed for library in 3.7 ms.
Analysis of test (User) on depth 0 completed in 0.32 ms.
Analysis complete: 369 modules in 4384.87 ms.
Analysis version 599 of 522 entries has been completed in 1969.64 ms.
Goto Definition in file:///Users/Sedim/tmp/test.py at (2, 17)
Opening document file:///Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py
Hover in file:///Users/Sedim/tmp/test.py at (2, 14)
Goto Definition in file:///Users/Sedim/tmp/test.py at (2, 15)
Opening document file:///Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py
Hover in file:///Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py at (136, 28)
Goto Definition in file:///Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py at (136, 28)
Goto Definition in file:///Users/Sedim/tmp/venv/lib/python3.7/site-packages/tinydb/database.py at (136, 28)

Code Snippet / Additional lnformation

import tinydb
db = tinydb.TinyDB("db.sjon")
jakebailey commented 5 years ago

Duplicate of #840. This is currently by design due to the memory/CPU requirements of processing and storing reference information outside of user code.