Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fe92d0b0
Commit
fe92d0b0
authored
Mar 10, 2008
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Also set LC_CTYPE, to allow localeconv string conversion.
parent
48b98ded
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
Lib/test/test__locale.py
Lib/test/test__locale.py
+7
-3
No files found.
Lib/test/test__locale.py
View file @
fe92d0b0
from
test.test_support
import
verbose
,
TestSkipped
,
run_unittest
from
_locale
import
(
setlocale
,
LC_NUMERIC
,
RADIXCHAR
,
THOUSEP
,
nl_langinfo
,
from
_locale
import
(
setlocale
,
LC_
ALL
,
LC_CTYPE
,
LC_
NUMERIC
,
RADIXCHAR
,
THOUSEP
,
nl_langinfo
,
localeconv
,
Error
)
import
unittest
from
platform
import
uname
...
...
@@ -28,10 +28,10 @@ known_numerics = {'fr_FR' : (',', ''), 'en_US':('.', ',')}
class
_LocaleTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
oldlocale
=
setlocale
(
LC_
NUMERIC
)
self
.
oldlocale
=
setlocale
(
LC_
ALL
)
def
tearDown
(
self
):
setlocale
(
LC_
NUMERIC
,
self
.
oldlocale
)
setlocale
(
LC_
ALL
,
self
.
oldlocale
)
# Want to know what value was calculated, what it was compared against,
# what function was used for the calculation, what type of data was used,
...
...
@@ -58,6 +58,7 @@ class _LocaleTests(unittest.TestCase):
for
loc
in
candidate_locales
:
try
:
setlocale
(
LC_NUMERIC
,
loc
)
setlocale
(
LC_CTYPE
,
loc
)
except
Error
:
continue
for
li
,
lc
in
((
RADIXCHAR
,
"decimal_point"
),
...
...
@@ -69,6 +70,7 @@ class _LocaleTests(unittest.TestCase):
for
loc
in
candidate_locales
:
try
:
setlocale
(
LC_NUMERIC
,
loc
)
setlocale
(
LC_CTYPE
,
loc
)
except
Error
:
continue
for
li
,
lc
in
((
RADIXCHAR
,
"decimal_point"
),
...
...
@@ -80,6 +82,7 @@ class _LocaleTests(unittest.TestCase):
for
loc
in
candidate_locales
:
try
:
setlocale
(
LC_NUMERIC
,
loc
)
setlocale
(
LC_CTYPE
,
loc
)
except
Error
:
continue
for
li
,
lc
in
((
RADIXCHAR
,
"decimal_point"
),
...
...
@@ -102,6 +105,7 @@ class _LocaleTests(unittest.TestCase):
for
loc
in
candidate_locales
:
try
:
setlocale
(
LC_NUMERIC
,
loc
)
setlocale
(
LC_CTYPE
,
loc
)
except
Error
:
continue
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment