From: Jack Jansen Date: Fri, 26 Jun 1998 14:52:04 +0000 (+0000) Subject: Print message when we load a PYC resource, if verbose import flag is on. X-Git-Tag: v1.5.2a1~421 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa68b07526082bfcece1c5a17ef63e46fc7cb82b;p=python Print message when we load a PYC resource, if verbose import flag is on. --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 98517e172a..2dc6cfa548 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: {