(num)
| 87 | ident(num) |
| 88 | |
| 89 | def should_raise(num): |
| 90 | with pytest.raises(OverflowError, match="Use pythonmonkey.bigint instead"): |
| 91 | ident(num) |
| 92 | # autopep8: off |
| 93 | not_raise(9007199254740991) # +(2**53-1), 0x433_FFFFFFFFFFFFF in float64 |
| 94 | should_raise(9007199254740992) # +(2**53 ), 0x434_0000000000000 in float64 |
no test coverage detected