Searched refs:check_different_constants (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/test/
H A Dtest_compile.py661 def check_different_constants(const1, const2): function in function:TestStackSize.test_dont_merge_constants
672 check_different_constants(0, 0.0)
673 check_different_constants(+0.0, -0.0)
674 check_different_constants((0,), (0.0,))
676 # check_different_constants() cannot be used because repr(-0j) is
/external/python/cpython3/Lib/test/
H A Dtest_compile.py634 def check_different_constants(const1, const2): function in function:.test_dont_merge_constants
646 check_different_constants(0, 0.0)
647 check_different_constants(+0.0, -0.0)
648 check_different_constants((0,), (0.0,))
649 check_different_constants('a', b'a')
650 check_different_constants(('a',), (b'a',))
652 # check_different_constants() cannot be used because repr(-0j) is

Completed in 176 milliseconds