]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16080: Use run_with_locale() decorator to reset the locale properly.
authorStefan Krah <skrah@bytereef.org>
Fri, 28 Sep 2012 14:18:54 +0000 (16:18 +0200)
committerStefan Krah <skrah@bytereef.org>
Fri, 28 Sep 2012 14:18:54 +0000 (16:18 +0200)
Lib/test/test_decimal.py

index 3ca5927f79e9a665a1de8c561590b514e15eaba7..b2ec1a6e07a6073bad932f741a18df13d65b1758 100644 (file)
@@ -34,7 +34,8 @@ import numbers
 import locale
 from test.support import (run_unittest, run_doctest, is_resource_enabled,
                           requires_IEEE_754)
-from test.support import check_warnings, import_fresh_module, TestFailed
+from test.support import (check_warnings, import_fresh_module, TestFailed,
+                          run_with_locale)
 import random
 import time
 import warnings
@@ -1136,18 +1137,13 @@ class FormatTest(unittest.TestCase):
         self.assertEqual(get_fmt(Decimal('-1.5'), dotsep_wide, '020n'),
                          '-0\u00b4000\u00b4000\u00b4000\u00b4001\u00bf5')
 
+    @run_with_locale('LC_ALL', 'ps_AF')
     def test_wide_char_separator_decimal_point(self):
         # locale with wide char separator and decimal point
         Decimal = self.decimal.Decimal
 
-        try:
-            locale.setlocale(locale.LC_ALL, 'ps_AF')
-        except locale.Error:
-            return
-
         self.assertEqual(format(Decimal('100000000.123'), 'n'),
                          '100\u066c000\u066c000\u066b123')
-        locale.resetlocale()
 
 class CFormatTest(FormatTest):
     decimal = C