From 9be5998760bb4a8d013a4d1e6daa9c3cc8d57586 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 6 Jun 2009 05:54:34 +0000 Subject: #6206: fix test__locale. --- Lib/test/test__locale.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index 385d049..0f67731 100644 --- a/Lib/test/test__locale.py +++ b/Lib/test/test__locale.py @@ -84,8 +84,7 @@ class _LocaleTests(unittest.TestCase): setlocale(LC_NUMERIC, loc) except Error: continue - for li, lc in ("decimal_point", - "thousands_sep"): + for lc in ("decimal_point", "thousands_sep"): self.numeric_tester('localeconv', localeconv()[lc], lc, loc) @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available") -- cgit v0.12