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 xdegaye
Recipients Michael.Felt, xdegaye
Date 2017-12-20.21:15:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513804508.55.0.213398074469.issue32390@psf.upfronthosting.co.za>
In-reply-to
Content
The PPC64 AIX 3.x Python buildbot (http://buildbot.python.org/all/#/builders/10) has been failing upon this same error for over a month.

Can you please try with:

PyStructSequence_SET_ITEM(v, 10, PyLong_FromUnsignedLong(st.f_fsid.val[0]));

Or if statvfs.f_fsid is a pointer to fsid_t, try this instead:

PyStructSequence_SET_ITEM(v, 10, PyLong_FromUnsignedLong(st.f_fsid->val[0]));
History
Date User Action Args
2017-12-20 21:15:08xdegayesetrecipients: + xdegaye, Michael.Felt
2017-12-20 21:15:08xdegayesetmessageid: <1513804508.55.0.213398074469.issue32390@psf.upfronthosting.co.za>
2017-12-20 21:15:08xdegayelinkissue32390 messages
2017-12-20 21:15:08xdegayecreate