Searched refs:BE_FLOAT_INF (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_float.py | 530 BE_FLOAT_INF = '\x7f\x80\x00\x00' variable 531 LE_FLOAT_INF = ''.join(reversed(BE_FLOAT_INF)) 558 for fmt, data in [('>f', BE_FLOAT_INF), 582 for fmt, data in [('>f', BE_FLOAT_INF),
|
/external/python/cpython3/Lib/test/ |
D | test_float.py | 565 BE_FLOAT_INF = b'\x7f\x80\x00\x00' variable 566 LE_FLOAT_INF = bytes(reversed(BE_FLOAT_INF)) 593 for fmt, data in [('>f', BE_FLOAT_INF), 617 for fmt, data in [('>f', BE_FLOAT_INF),
|