[Python-Dev] test___all__ failing; Windows
Skip Montanaro
skip@mojam.com (Skip Montanaro)
Wed, 24 Jan 2001 08:50:02 -0600 (CST)
Tim> Nevermind; checked in a hack to stop the error on Windows.
Probably should file a bug report (if you haven't already) so the root
problem isn't forgotten because the hack obscures it. I see this code in
localemodule.c:
#ifdef LC_MESSAGES
x = PyInt_FromLong(LC_MESSAGES);
PyDict_SetItemString(d, "LC_MESSAGES", x);
Py_XDECREF(x);
#endif /* LC_MESSAGES */
Martin, looks like this module is your baby. Care to hazard a guess about
whether LC_MESSAGES should always or never be there?
Skip