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 mark.dickinson, skrah
Date 2012-11-23.07:50:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353657055.07.0.517818046195.issue16534@psf.upfronthosting.co.za>
In-reply-to
Content
From the buildbot configure output:

checking whether C doubles are little-endian IEEE 754 binary64... no
checking whether C doubles are big-endian IEEE 754 binary64... yes
checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
checking whether we can use gcc inline assembler to get and set x87 control word... no
checking for x87-style double rounding... yes

Judging by that, it'll probably be using the legacy float repr, since the configure script didn't find a way to set the FPU control word.

In that case this is just an overeager test: we expect 50 digits of accuracy but the system-supplied formatting only gives us 35.

But it would also be good to try to find a way to enable the short float repr on that box.
History
Date User Action Args
2012-11-23 07:50:55mark.dickinsonsetrecipients: + mark.dickinson, skrah
2012-11-23 07:50:55mark.dickinsonsetmessageid: <1353657055.07.0.517818046195.issue16534@psf.upfronthosting.co.za>
2012-11-23 07:50:55mark.dickinsonlinkissue16534 messages
2012-11-23 07:50:54mark.dickinsoncreate