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
41dde32b
Commit
41dde32b
authored
Nov 21, 2011
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #13441: Reenable strxfrm() tests on Solaris
parent
ce0e7daf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
Lib/test/test__locale.py
Lib/test/test__locale.py
+0
-2
Lib/test/test_locale.py
Lib/test/test_locale.py
+0
-4
No files found.
Lib/test/test__locale.py
View file @
41dde32b
...
...
@@ -113,8 +113,6 @@ class _LocaleTests(unittest.TestCase):
nl_radixchar
,
li_radixchar
,
loc
,
set_locale
))
@
unittest
.
skipIf
(
sys
.
platform
==
'sunos5'
,
"http://bugs.python.org/issue13441"
)
def
test_float_parsing
(
self
):
# Bug #1391872: Test whether float parsing is okay on European
# locales.
...
...
Lib/test/test_locale.py
View file @
41dde32b
...
...
@@ -343,8 +343,6 @@ class TestCollation(unittest.TestCase):
self
.
assertEqual
(
locale
.
strcoll
(
'a'
,
'a'
),
0
)
self
.
assertGreater
(
locale
.
strcoll
(
'b'
,
'a'
),
0
)
@
unittest
.
skipIf
(
sys
.
platform
==
'sunos5'
,
"http://bugs.python.org/issue13441"
)
def
test_strxfrm
(
self
):
self
.
assertLess
(
locale
.
strxfrm
(
'a'
),
locale
.
strxfrm
(
'b'
))
...
...
@@ -366,8 +364,6 @@ class TestEnUSCollation(BaseLocalizedTest, TestCollation):
def
test_strcoll_with_diacritic
(
self
):
self
.
assertLess
(
locale
.
strcoll
(
'à'
,
'b'
),
0
)
@
unittest
.
skipIf
(
sys
.
platform
==
'sunos5'
,
"http://bugs.python.org/issue13441"
)
def
test_strxfrm_with_diacritic
(
self
):
self
.
assertLess
(
locale
.
strxfrm
(
'à'
),
locale
.
strxfrm
(
'b'
))
...
...
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