mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
Issue #17118: Add new tests for testing Python-Tcl interaction.
This commit is contained in:
parent
8995300298
commit
df4bb46457
1 changed files with 20 additions and 0 deletions
|
|
@ -151,6 +151,26 @@ class TclTest(unittest.TestCase):
|
||||||
# exit code must be zero
|
# exit code must be zero
|
||||||
self.assertEqual(f.close(), None)
|
self.assertEqual(f.close(), None)
|
||||||
|
|
||||||
|
def test_passing_values(self):
|
||||||
|
def passValue(value):
|
||||||
|
return self.interp.call('set', '_', value)
|
||||||
|
|
||||||
|
self.assertEqual(passValue(True), True)
|
||||||
|
self.assertEqual(passValue(False), False)
|
||||||
|
self.assertEqual(passValue('string'), 'string')
|
||||||
|
self.assertEqual(passValue('string\u20ac'), 'string\u20ac')
|
||||||
|
for i in (0, 1, -1, 2**31-1, -2**31):
|
||||||
|
self.assertEqual(passValue(i), i)
|
||||||
|
for f in (0.0, 1.0, -1.0, 1/3,
|
||||||
|
sys.float_info.min, sys.float_info.max,
|
||||||
|
-sys.float_info.min, -sys.float_info.max):
|
||||||
|
self.assertEqual(passValue(f), f)
|
||||||
|
for f in float('nan'), float('inf'), -float('inf'):
|
||||||
|
if f != f: # NaN
|
||||||
|
self.assertNotEqual(passValue(f), f)
|
||||||
|
else:
|
||||||
|
self.assertEqual(passValue(f), f)
|
||||||
|
self.assertEqual(passValue((1, '2', (3.4,))), (1, '2', (3.4,)))
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue