Issue #18520: initsite() is a little bit more verbose when import site fails
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index edf9b6b..30e5e6f 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -918,6 +918,7 @@
     PyObject *m;
     m = PyImport_ImportModule("site");
     if (m == NULL) {
+        fprintf(stderr, "Failed to import the site module\n");
         PyErr_Print();
         Py_Finalize();
         exit(1);