Commit 70614131 authored by Victor Stinner's avatar Victor Stinner

Issue #13441: Log the locale when localeconv() fails

parent 221ea5d9
......@@ -86,9 +86,13 @@ class _LocaleTests(unittest.TestCase):
setlocale(LC_CTYPE, loc)
except Error:
continue
try:
formatting = localeconv()
except Exception as err:
self.fail("localeconv() failed with %s locale: %s" % (loc, err))
for lc in ("decimal_point",
"thousands_sep"):
self.numeric_tester('localeconv', localeconv()[lc], lc, loc)
self.numeric_tester('localeconv', formatting[lc], lc, loc)
@unittest.skipUnless(nl_langinfo, "nl_langinfo is not available")
def test_lc_numeric_basic(self):
......
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