This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients brett.cannon, twouters
Date 2013-03-05.18:39:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362508786.58.0.573720742248.issue17357@psf.upfronthosting.co.za>
In-reply-to
Content
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_WriteStderr("import %s # directory %s\n", name, pathname);  although that might be confusing in the face of namespace packages (http://hg.python.org/cpython/file/637d7c953b10/Python/import.c#l1435)

PySys_WriteStderr("# trying %s\n", buf); (http://hg.python.org/cpython/file/637d7c953b10/Python/import.c#l1837)

PySys_WriteStderr("import %s # frozen%s\n", name, ispackage ? " package" : ""); (http://hg.python.org/cpython/file/637d7c953b10/Python/import.c#l2335)

PySys_WriteStderr("import %s # builtin\n", name); (http://hg.python.org/cpython/file/637d7c953b10/Python/import.c#l2224)

Everything else changed, but is covered by some new verbose message.



Should probably change "created {!r}" to "wrote {!r}" in importlib (http://hg.python.org/cpython/file/b0890674bc21/Lib/importlib/_bootstrap.py#l1091)
History
Date User Action Args
2013-03-05 18:39:46brett.cannonsetrecipients: + brett.cannon, twouters
2013-03-05 18:39:46brett.cannonsetmessageid: <1362508786.58.0.573720742248.issue17357@psf.upfronthosting.co.za>
2013-03-05 18:39:46brett.cannonlinkissue17357 messages
2013-03-05 18:39:46brett.cannoncreate