[issue17357] Add missing verbosity message to importlib

2013-04-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 75e32a0bfd74 by Brett Cannon in branch '3.3': Issue #17357: Use more stern wording for http://hg.python.org/cpython/rev/75e32a0bfd74 New changeset 5fac0ac46f54 by Brett Cannon in branch 'default': merge for issue #17357 http://hg.python.org/cpython/

[issue17357] Add missing verbosity message to importlib

2013-04-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset ac89e7bc0e2f by Brett Cannon in branch '3.3': Issue #17357: Add missing verbosity messages when running under http://hg.python.org/cpython/rev/ac89e7bc0e2f -- nosy: +python-dev ___ Python tracker

[issue17357] Add missing verbosity message to importlib

2013-04-01 Thread Brett Cannon
Brett Cannon added the comment: Also done in default but since I forgot to say it was a merge for this issue it didn't add the commit message. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue17357] Add missing verbosity message to importlib

2013-03-05 Thread Brett Cannon
Brett Cannon added the comment: Actually, the builtin/frozen stuff is covered by a catch-all "import ..." message in importlib itself (I thought I wasn't _that_ sloppy when I added the messages). That just leaves the bad magic number, what to do about a matching directory, and "trying". -

[issue17357] Add missing verbosity message to importlib

2013-03-05 Thread Brett Cannon
Brett Cannon added the comment: Any change below needs to be checked for what verbosity it matters for (although I think there is only a single level 2 message): PySys_WriteStderr("# %s has bad magic\n", cpathname); (http://hg.python.org/cpython/file/637d7c953b10/Python/import.c#l1038) PySys_

[issue17357] Add missing verbosity message to importlib

2013-03-05 Thread Brett Cannon
New submission from Brett Cannon: Looks like I missed some verbosity messages in importlib. The most obvious one is the "trying" messages under verbosity 2 (-vv or PYTHONVERBOSE=2). Should probably go through import.c again and make sure no other messages are missing (http://hg.python.org/cpyt