What should be the output of `'%E' % float("+inf")`? Python outputs `'INF'`. Bazel outputs `'+inf'`. There are two points to solve: - Should there be a `'+'` prefix? - Should it be capitalised?
What should be the output of
'%E' % float("+inf")?Python outputs
'INF'.Bazel outputs
'+inf'.There are two points to solve:
'+'prefix?