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 amaury.forgeotdarc
Recipients amaury.forgeotdarc
Date 2008-09-13.13:35:47
SpamBayes Score 0.00044841244
Marked as misclassified No
Message-id <1221312951.19.0.765623147021.issue3859@psf.upfronthosting.co.za>
In-reply-to
Content
the "AMD64 W2k8 3.0" buildbot always fail test_sys:

...
    check(range(66000), size(h + '3l'))
...
AssertionError: wrong size for <class 'range'>: got 56, expected 48

The previous line of the test is:
    check(range(1), size(h + '3P'))
(win64 is the only platform where 'P' has a different size than 'l')
Why are there two versions of the structure? There is only one range 
object.

I suggest to replace the failing line with:
    check(range(66000), size(h + '3P'))
to properly reflect the three PyObject* of the structure.
History
Date User Action Args
2008-09-13 13:35:51amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc
2008-09-13 13:35:51amaury.forgeotdarcsetmessageid: <1221312951.19.0.765623147021.issue3859@psf.upfronthosting.co.za>
2008-09-13 13:35:48amaury.forgeotdarclinkissue3859 messages
2008-09-13 13:35:47amaury.forgeotdarccreate