Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upPython: modules from site-packages are not extracted #19
Comments
|
Is |
|
Yes, it's installed. |
When I import a built-in module (e.g.
import os) in my.pyfile and runcodeql database create codeql_db --language=python, the module is extracted and included in the database:$ codeql database create codeql_db --language=python [...] [2020-02-14 23:39:12] [build] [INFO] [3] Extracted file /usr/lib64/python3.7/os.py in 717ms [...]But when I import a non built-in module (e.g.
import flask), it's not extracted.Is that correct behavior?