[issue20020] "modernize" the modulefinder module

2019-02-07 Thread Brandt Bucher
Change by Brandt Bucher : -- keywords: +patch, patch pull_requests: +11788, 11789 stage: needs patch -> patch review ___ Python tracker ___

[issue20020] "modernize" the modulefinder module

2019-02-07 Thread Brandt Bucher
Change by Brandt Bucher : -- keywords: +patch pull_requests: +11788 stage: needs patch -> patch review ___ Python tracker ___ ___ Py

[issue20020] "modernize" the modulefinder module

2015-10-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20020] "modernize" the modulefinder module

2014-10-14 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20020] "modernize" the modulefinder module

2014-10-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: The code of Thomas has not the same API than the "modulefinder" module. If you want a patch, we need to rework the code of Thomas and provide an equivalent API with the existing one. What do you suggest? -- nosy: +matrixise _

[issue20020] "modernize" the modulefinder module

2014-09-01 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue20020] "modernize" the modulefinder module

2013-12-19 Thread Thomas Heller
Thomas Heller added the comment: I have written a new modulefinder based on importlib. It is not a refactoring of the old one, so it is no plug-in replacement. Instead it has some new features: - Better logging output - collects dependencies (self._depgraph maps module names to callers) - wh

[issue20020] "modernize" the modulefinder module

2013-12-18 Thread Eric Snow
New submission from Eric Snow: The modulefinder module (Lib/modulefinder.py) provides a ModuleFinder class (plus 2 helpers) you can use to see what modules a script imports (directly or indirectly). The module's implementation is centered on the old imp.find_/load_module() API (which has been