[issue29113] modulefinder no longer finds all required modules for Python itself, due to use of __import__ in sysconfig

Brett Cannon report at bugs.python.org
Tue Jan 10 14:19:23 EST 2017


Brett Cannon added the comment:

The limitation is unavoidable as modulefinder inspects bytecode for its inferencing, so any code that calls __import__() or importlib.import_module() will simply not work. So unless sysconfig can be updated reasonably back to a statically defined import this is just how it will be (I'll let doko comment on whether updating is possible and thus close this issue).

----------
nosy: +brett.cannon

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue29113>
_______________________________________


More information about the Python-bugs-list mailing list