The locale "En" appears not to be valid on windows underi VisualStudio.2005. ...

The locale "En" appears not to be valid on windows underi VisualStudio.2005.  Added "English" to the test_locale.py to make the testsuite pass for that build
parent 0a440d41
...@@ -7,7 +7,7 @@ if sys.platform == 'darwin': ...@@ -7,7 +7,7 @@ if sys.platform == 'darwin':
oldlocale = locale.setlocale(locale.LC_NUMERIC) oldlocale = locale.setlocale(locale.LC_NUMERIC)
if sys.platform.startswith("win"): if sys.platform.startswith("win"):
tlocs = ("en",) tlocs = ("En", "English")
else: else:
tlocs = ("en_US.UTF-8", "en_US.US-ASCII", "en_US") tlocs = ("en_US.UTF-8", "en_US.US-ASCII", "en_US")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment