[issue13593] importlib needs to be updated for __qualname__

2011-12-14 Thread Meador Inge
Meador Inge added the comment: Fix committed. Thanks for the review Antoine and Brett. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue13593] importlib needs to be updated for __qualname__

2011-12-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 54a77c556d9a by Meador Inge in branch 'default': Issue #13593: updating the importlib utility decorators for __qualname__. http://hg.python.org/cpython/rev/54a77c556d9a -- nosy: +python-dev ___ Python tr

[issue13593] importlib needs to be updated for __qualname__

2011-12-14 Thread Brett Cannon
Brett Cannon added the comment: Seems fine to me, and if Antoine says it's doing the right thing then I'm cool with the patch. -- assignee: -> meador.inge ___ Python tracker _

[issue13593] importlib needs to be updated for __qualname__

2011-12-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Looks ok to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue13593] importlib needs to be updated for __qualname__

2011-12-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +pitrou stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue13593] importlib needs to be updated for __qualname__

2011-12-13 Thread Meador Inge
New submission from Meador Inge : I was recently reading the 'importlib' code and noticed that the utility decorators have not been updated for '__qualname__': >>> def f(): pass ... >>> importlib.util.set_loader(f) .wrapper at 0x7f4b323f1f60> >>> importlib.util.set_loader(f).__name__ 'f' >>> i