This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients landry, mark.dickinson, rpointel, vstinner
Date 2011-07-22.15:14:49
SpamBayes Score 5.6600163e-07
Marked as misclassified No
Message-id <1311347689.96.0.340631607422.issue12589@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2011-07-22 15:14:50mark.dickinsonsetrecipients: + mark.dickinson, vstinner, rpointel, landry
2011-07-22 15:14:49mark.dickinsonsetmessageid: <1311347689.96.0.340631607422.issue12589@psf.upfronthosting.co.za>
2011-07-22 15:14:49mark.dickinsonlinkissue12589 messages
2011-07-22 15:14:49mark.dickinsoncreate