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
bdf0cb52
Commit
bdf0cb52
authored
Jan 23, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed test_user_command on OpenSolaris where floats can have different string
representation in Tcl and Python.
parent
744135d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
9 deletions
+20
-9
Lib/test/test_tcl.py
Lib/test/test_tcl.py
+20
-9
No files found.
Lib/test/test_tcl.py
View file @
bdf0cb52
...
@@ -199,9 +199,19 @@ class TclTest(unittest.TestCase):
...
@@ -199,9 +199,19 @@ class TclTest(unittest.TestCase):
result
=
arg
result
=
arg
return
arg
return
arg
self
.
interp
.
createcommand
(
'testfunc'
,
testfunc
)
self
.
interp
.
createcommand
(
'testfunc'
,
testfunc
)
def
check
(
value
,
expected
):
def
check
(
value
,
expected
,
eq
=
self
.
assertEqual
):
self
.
assertEqual
(
self
.
interp
.
call
(
'testfunc'
,
value
),
expected
)
r
=
self
.
interp
.
call
(
'testfunc'
,
value
)
self
.
assertEqual
(
result
,
expected
)
self
.
assertIsInstance
(
result
,
str
)
eq
(
result
,
expected
)
self
.
assertIsInstance
(
r
,
str
)
eq
(
r
,
expected
)
def
float_eq
(
actual
,
expected
):
expected
=
float
(
expected
)
self
.
assertAlmostEqual
(
float
(
actual
),
expected
,
delta
=
abs
(
expected
)
*
1e-10
)
def
nan_eq
(
actual
,
expected
):
actual
=
float
(
actual
)
self
.
assertNotEqual
(
actual
,
actual
)
check
(
True
,
'1'
)
check
(
True
,
'1'
)
check
(
False
,
'0'
)
check
(
False
,
'0'
)
...
@@ -210,13 +220,14 @@ class TclTest(unittest.TestCase):
...
@@ -210,13 +220,14 @@ class TclTest(unittest.TestCase):
check
(
'string
\
u20ac
'
,
'string
\
u20ac
'
)
check
(
'string
\
u20ac
'
,
'string
\
u20ac
'
)
for
i
in
(
0
,
1
,
-
1
,
2
**
31
-
1
,
-
2
**
31
):
for
i
in
(
0
,
1
,
-
1
,
2
**
31
-
1
,
-
2
**
31
):
check
(
i
,
str
(
i
))
check
(
i
,
str
(
i
))
for
f
in
(
0.0
,
1.0
,
-
1.0
,
1
/
3
,
for
f
in
(
0.0
,
1.0
,
-
1.0
):
sys
.
float_info
.
min
,
sys
.
float_info
.
max
,
check
(
f
,
repr
(
f
))
for
f
in
(
1
/
3.0
,
sys
.
float_info
.
min
,
sys
.
float_info
.
max
,
-
sys
.
float_info
.
min
,
-
sys
.
float_info
.
max
):
-
sys
.
float_info
.
min
,
-
sys
.
float_info
.
max
):
check
(
f
,
str
(
f
)
)
check
(
f
,
f
,
eq
=
float_eq
)
check
(
float
(
'
nan'
),
'NaN'
)
check
(
float
(
'
inf'
),
'Inf'
,
eq
=
float_eq
)
check
(
float
(
'inf'
),
'Inf'
)
check
(
-
float
(
'inf'
),
'-Inf'
,
eq
=
float_eq
)
check
(
-
float
(
'inf'
),
'-Inf'
)
check
(
float
(
'nan'
),
'NaN'
,
eq
=
nan_eq
)
check
((),
''
)
check
((),
''
)
check
((
1
,
(
2
,),
(
3
,
4
),
'5 6'
,
()),
'1 2 {3 4} {5 6} {}'
)
check
((
1
,
(
2
,),
(
3
,
4
),
'5 6'
,
()),
'1 2 {3 4} {5 6} {}'
)
...
...
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