[issue18058] Define is_package for NamespaceLoader

2013-06-18 Thread Brett Cannon
Brett Cannon added the comment: No because it would mean new functionality in a bugfix release. -- ___ Python tracker ___ ___ Python-b

[issue18058] Define is_package for NamespaceLoader

2013-06-18 Thread Thomas Heller
Thomas Heller added the comment: Brett, can these changes be merged into 3.3 also? -- nosy: +theller ___ Python tracker ___ ___ Python

[issue18058] Define is_package for NamespaceLoader

2013-06-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset ebec625b13f9 by Brett Cannon in branch 'default': Issues #18058, 18057: Make importlib._bootstrap.NamespaceLoader http://hg.python.org/cpython/rev/ebec625b13f9 -- nosy: +python-dev ___ Python tracker

[issue18058] Define is_package for NamespaceLoader

2013-06-16 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed stage: test needed -> committed/rejected status: open -> closed ___ Python tracker ___

[issue18058] Define is_package for NamespaceLoader

2013-05-26 Thread Eric V. Smith
Eric V. Smith added the comment: I think it's just an oversight. -- assignee: barry -> brett.cannon ___ Python tracker ___ ___ Python-

[issue18058] Define is_package for NamespaceLoader

2013-05-25 Thread Brett Cannon
New submission from Brett Cannon: Is there a reason that is_package() is not defined for NamespaceLoader? If it's just an oversight then adding it would let -m would work with namespace packages. The other abstract methods on InspectLoader can also be implemented or raise ImportError as approp