diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-06-26 14:52:04 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-06-26 14:52:04 (GMT) |
commit | fa68b07526082bfcece1c5a17ef63e46fc7cb82b (patch) | |
tree | 40e063b6d93bd57db90699948f85eea3083f8a78 /Mac | |
parent | 1cd4d52f2f1fe52f3480f490bcc6ef4dc4e4de19 (diff) | |
download | cpython-fa68b07526082bfcece1c5a17ef63e46fc7cb82b.zip cpython-fa68b07526082bfcece1c5a17ef63e46fc7cb82b.tar.gz cpython-fa68b07526082bfcece1c5a17ef63e46fc7cb82b.tar.bz2 |
Print message when we load a PYC resource, if verbose import flag is on.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Python/macglue.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 98517e1..2dc6cfa 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -830,6 +830,9 @@ char *filename; } else { m = NULL; } + if (Py_VerboseFlag) + fprintf(stderr, "import %s # pyc resource from %s\n", + module, filename); return m; error: { |