[Python-checkins] r73252 - python/trunk/Lib/test/test__locale.py

georg.brandl python-checkins at python.org
Sat Jun 6 07:54:34 CEST 2009


Author: georg.brandl
Date: Sat Jun  6 07:54:34 2009
New Revision: 73252

Log:
#6206: fix test__locale.

Modified:
   python/trunk/Lib/test/test__locale.py

Modified: python/trunk/Lib/test/test__locale.py
==============================================================================
--- python/trunk/Lib/test/test__locale.py	(original)
+++ python/trunk/Lib/test/test__locale.py	Sat Jun  6 07:54:34 2009
@@ -84,8 +84,7 @@
                 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")


More information about the Python-checkins mailing list