diff options
-rw-r--r-- | Lib/test/test__locale.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index 385d04925e..0f67731f15 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") |