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 neale
Recipients amaury.forgeotdarc, arigo, bkabrda, ncoghlan, neale, terry.reedy
Date 2015-04-06.17:28:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428341295.48.0.693983121614.issue23830@psf.upfronthosting.co.za>
In-reply-to
Content
Attaching a patch based off 3.5.0a3.

Note, for Py_ssize_t I had to add:

#ifdef PY_SSIZE_T_CLEAN
        Py_ssize_t lNode, lUser, lName;
#else
        int lNode, lUser, lName;
#endif

As if I did not, the values I got back were garbage. Is this because of some configuration parameter I failed to use?

However, the patch builds on s390x and x86_64 and the test passes on the former and is skipped on the latter.
History
Date User Action Args
2015-04-06 17:28:15nealesetrecipients: + neale, arigo, terry.reedy, amaury.forgeotdarc, ncoghlan, bkabrda
2015-04-06 17:28:15nealesetmessageid: <1428341295.48.0.693983121614.issue23830@psf.upfronthosting.co.za>
2015-04-06 17:28:15nealelinkissue23830 messages
2015-04-06 17:28:15nealecreate