Searched refs:BE_DOUBLE_INF (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_float.py | 525 BE_DOUBLE_INF = '\x7f\xf0\x00\x00\x00\x00\x00\x00' variable 526 LE_DOUBLE_INF = ''.join(reversed(BE_DOUBLE_INF)) 551 for fmt, data in [('>d', BE_DOUBLE_INF), 574 for fmt, data in [('>d', BE_DOUBLE_INF),
|
/external/python/cpython3/Lib/test/ |
D | test_float.py | 560 BE_DOUBLE_INF = b'\x7f\xf0\x00\x00\x00\x00\x00\x00' variable 561 LE_DOUBLE_INF = bytes(reversed(BE_DOUBLE_INF)) 586 for fmt, data in [('>d', BE_DOUBLE_INF), 609 for fmt, data in [('>d', BE_DOUBLE_INF),
|