mirror of
https://github.com/python/cpython.git
synced 2025-12-10 19:10:59 +00:00
In order to make this test work on Windows, the test locale has to be
set to 'en' there -- Windows does not understand the 'en_US' locale. The test succeeds there.
This commit is contained in:
parent
2d996c0704
commit
fc349862d4
1 changed files with 7 additions and 2 deletions
|
|
@ -1,12 +1,17 @@
|
||||||
from test_support import verbose
|
from test_support import verbose
|
||||||
import locale
|
import locale
|
||||||
|
import sys
|
||||||
|
|
||||||
oldlocale = locale.setlocale(locale.LC_NUMERIC)
|
oldlocale = locale.setlocale(locale.LC_NUMERIC)
|
||||||
|
|
||||||
|
tloc = "en_US"
|
||||||
|
if sys.platform[:3] == "win":
|
||||||
|
tloc = "en"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
locale.setlocale(locale.LC_NUMERIC, "en_US")
|
locale.setlocale(locale.LC_NUMERIC, tloc)
|
||||||
except locale.Error:
|
except locale.Error:
|
||||||
raise ImportError, "test locale en_US not supported"
|
raise ImportError, "test locale %s not supported" % tloc
|
||||||
|
|
||||||
def testformat(formatstr, value, grouping = 0, output=None):
|
def testformat(formatstr, value, grouping = 0, output=None):
|
||||||
if verbose:
|
if verbose:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue