[issue15357] Deprecate redundant pieces of pkgutil

2012-07-15 Thread Nick Coghlan
Nick Coghlan added the comment: I'm pretty sure I got them all while fixing #15343 -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker _

[issue15357] Deprecate redundant pieces of pkgutil

2012-07-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3987667bf98f by Nick Coghlan in branch 'default': Take the first step in resolving the messy pkgutil vs importlib edge cases by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ corre

[issue15357] Deprecate redundant pieces of pkgutil

2012-07-14 Thread Nick Coghlan
New submission from Nick Coghlan : To set the stage for fixing the regression reported in #15343, I'm going through and clearly marking the parts of pkgutil which should no longer be used now that the default import system is PEP 302 compliant. -- assignee: ncoghlan components: Library