diff options
author | Barry Warsaw <barry@python.org> | 2000-08-18 05:07:12 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-08-18 05:07:12 (GMT) |
commit | fc4514c22b0c4a84c3e2c66a12893d81492f5224 (patch) | |
tree | 8faf9b1ed1aee8ae473b9723004f54e27738b393 /Modules/_localemodule.c | |
parent | 87bec35d7480bf468d1d1fc7c39b7d99f1581dd0 (diff) | |
download | cpython-fc4514c22b0c4a84c3e2c66a12893d81492f5224.zip cpython-fc4514c22b0c4a84c3e2c66a12893d81492f5224.tar.gz cpython-fc4514c22b0c4a84c3e2c66a12893d81492f5224.tar.bz2 |
init_locale(): This file defines the _locale module, so the
Py_FatalError() should reflect that.
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r-- | Modules/_localemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ init_locale(void) Py_XDECREF(x); if (PyErr_Occurred()) - Py_FatalError("Can't initialize module locale"); + Py_FatalError("Can't initialize module _locale"); } |