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 98517e1..2dc6cfa 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -830,6 +830,9 @@
 	} else {
 		m = NULL;
 	}
+	if (Py_VerboseFlag)
+		fprintf(stderr, "import %s # pyc resource from %s\n",
+			module, filename);
 	return m;
 error:
 	{