mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-41700: Skip test if the locale is not supported (GH-22081) (GH-22085)
(cherry picked from commit 54a66ade20
)
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
This commit is contained in:
parent
8d68e59f11
commit
8f13ff959a
1 changed files with 4 additions and 1 deletions
|
@ -407,7 +407,10 @@ class LocaleCoercionTests(_LocaleHandlingTestCase):
|
|||
# skip the test if the LC_CTYPE locale is C or coerced
|
||||
old_loc = locale.setlocale(locale.LC_CTYPE, None)
|
||||
self.addCleanup(locale.setlocale, locale.LC_CTYPE, old_loc)
|
||||
loc = locale.setlocale(locale.LC_CTYPE, "")
|
||||
try:
|
||||
loc = locale.setlocale(locale.LC_CTYPE, "")
|
||||
except locale.Error as e:
|
||||
self.skipTest(str(e))
|
||||
if loc == "C":
|
||||
self.skipTest("test requires LC_CTYPE locale different than C")
|
||||
if loc in TARGET_LOCALES :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue