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 landry
Recipients landry, mark.dickinson, rpointel, vstinner
Date 2011-07-21.19:22:00
SpamBayes Score 0.023955625
Marked as misclassified No
Message-id <1311276120.78.0.251799463216.issue12589@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import struct
>>> struct.pack("d", float("inf"))
b'\x7f\xf0\x00\x00\x00\x00\x00\x00'
>>> struct.pack("f", float("inf"))
b'\x7f\x80\x00\x00'

And yes, HAVE_DECL_ISINF is defined to 1 in pyconfig.h
History
Date User Action Args
2011-07-21 19:22:00landrysetrecipients: + landry, mark.dickinson, vstinner, rpointel
2011-07-21 19:22:00landrysetmessageid: <1311276120.78.0.251799463216.issue12589@psf.upfronthosting.co.za>
2011-07-21 19:22:00landrylinkissue12589 messages
2011-07-21 19:22:00landrycreate