Message140886
The '1.06...e-314' number in the gdb output is interesting: it indicates a byte-ordering issue, though maybe that issue is only pertinent to gdb itself.
On a little-endian machine:
>>> struct.pack('<d', 1.0604798301039825e-314)
'\x00\x00\xf0\x7f\x00\x00\x00\x00'
>>> struct.pack('<d', float('inf'))
'\x00\x00\x00\x00\x00\x00\xf0\x7f'
Same bytes, different order. This may indicate some kind of float / double mismatch somewhere, or a byte-ordering issue. |
|
Date |
User |
Action |
Args |
2011-07-22 15:14:50 | mark.dickinson | set | recipients:
+ mark.dickinson, vstinner, rpointel, landry |
2011-07-22 15:14:49 | mark.dickinson | set | messageid: <1311347689.96.0.340631607422.issue12589@psf.upfronthosting.co.za> |
2011-07-22 15:14:49 | mark.dickinson | link | issue12589 messages |
2011-07-22 15:14:49 | mark.dickinson | create | |
|