init_locale(): This file defines the _locale module, so the
Py_FatalError() should reflect that.
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 030f9d6..5dabfca 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -454,5 +454,5 @@
     Py_XDECREF(x);
 
     if (PyErr_Occurred())
-        Py_FatalError("Can't initialize module locale");
+        Py_FatalError("Can't initialize module _locale");
 }