[issue35376] modulefinder skips nested modules with same name as top-level bad module

2019-04-07 Thread Nick Coghlan
Nick Coghlan added the comment: Fixed for Python 3.8 via the patch for #35936. We won't be backporting that patch as it also migrates modulefinder from the deprecated imp API to the supported importlib one, and is hence considered overly intrusive for a bug fix release. --

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2019-02-07 Thread Brandt Bucher
Change by Brandt Bucher : -- pull_requests: +11785 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-07 Thread Brett Cannon
Brett Cannon added the comment: PRs should always be against 'master' unless the issue is already fixed there. -- nosy: +brett.cannon ___ Python tracker ___

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-07 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +jvr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-07 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-07 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-04 Thread rdb
Change by rdb : -- pull_requests: -10133 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-04 Thread rdb
Change by rdb : -- pull_requests: +10134 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-04 Thread rdb
Change by rdb : -- pull_requests: +10133 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +brett.cannon, eric.snow, ncoghlan stage: -> patch review versions: -Python 3.4, Python 3.5 ___ Python tracker ___

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-02 Thread rdb
New submission from rdb : If modulefinder finds a nested module import (eg. 'import a.b.c') while there is a top-level module with the same name (eg. 'c') that failed to import and got added to the badmodules list, it will skip it entirely without even trying to import it. This has a