summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-27 17:21:04 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-27 17:21:04 (GMT)
commit4cd8b5cad8236baebaccc62e57c3f7828d49a667 (patch)
treeef55c180b7e4ef6f3aa24d9c7b77300472c7fb24
parent2bac4d33683bb16050908a875b5b67818e167aa4 (diff)
downloadcpython-4cd8b5cad8236baebaccc62e57c3f7828d49a667.zip
cpython-4cd8b5cad8236baebaccc62e57c3f7828d49a667.tar.gz
cpython-4cd8b5cad8236baebaccc62e57c3f7828d49a667.tar.bz2
Print messages about where from modules are imported when -v is given.
-rw-r--r--Python/import.c29
1 files changed, 27 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index 7fc50c8..c76d8c9 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -38,6 +38,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "ceval.h"
#include "osdefs.h"
+extern int verbose; /* Defined in pythonmain.c */
+
#ifdef DEBUG
#define D(x) x
#else
@@ -186,6 +188,10 @@ get_module(m, name, m_ret)
D(fprintf(stderr, "dl_loadmod failed\n"));
}
else {
+ if (verbose)
+ fprintf(stderr,
+ "import %s # dynamically loaded from \"%s\"\n",
+ name, namebuf);
(*p)();
*m_ret = m = dictlookup(modules, name);
if (m == NULL) {
@@ -234,10 +240,25 @@ get_module(m, name, m_ret)
co = (codeobject *)v;
}
fclose(fpc);
+ if (verbose) {
+ if (co != NULL)
+ fprintf(stderr,
+ "import %s # precompiled from \"%s\"\n",
+ name, namebuf);
+ else
+ fprintf(stderr,
+ "# invalid precompiled file \"%s\"\n",
+ namebuf);
+ }
}
namebuf[namelen] = '\0';
- if (co == NULL)
+ if (co == NULL) {
+ if (verbose)
+ fprintf(stderr,
+ "import %s # from \"%s\"\n",
+ name, namebuf);
err = parse_file(fp, namebuf, file_input, &n);
+ }
else
err = E_DONE;
fclose(fp);
@@ -307,7 +328,8 @@ import_module(name)
if ((m = dictlookup(modules, name)) == NULL) {
if (init_builtin(name)) {
if ((m = dictlookup(modules, name)) == NULL)
- err_setstr(SystemError, "builtin module missing");
+ err_setstr(SystemError,
+ "builtin module missing");
}
else {
m = load_module(name);
@@ -385,6 +407,9 @@ init_builtin(name)
int i;
for (i = 0; inittab[i].name != NULL; i++) {
if (strcmp(name, inittab[i].name) == 0) {
+ if (verbose)
+ fprintf(stderr, "import %s # builtin\n",
+ name);
(*inittab[i].initfunc)();
return 1;
}