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 pitrou
Recipients Arfrever, barry, brett.cannon, eric.snow, lemburg, ncoghlan, ned.deily, pitrou, python-dev, steve.dower, tim.golden, vstinner, zach.ware
Date 2015-02-16.20:26:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424118372.77.0.917191924581.issue22980@psf.upfronthosting.co.za>
In-reply-to
Content
So, PEP 3149 claims EXT_SUFFIX will always contain the ABI tag, but configure.ac makes it Linux-specific (?!):

AC_SUBST(EXT_SUFFIX)
case $ac_sys_system in
    Linux*|GNU*)
	EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
    *)
	EXT_SUFFIX=${SHLIB_SUFFIX};;
esac
History
Date User Action Args
2015-02-16 20:26:12pitrousetrecipients: + pitrou, lemburg, barry, brett.cannon, ncoghlan, vstinner, tim.golden, ned.deily, Arfrever, python-dev, eric.snow, zach.ware, steve.dower
2015-02-16 20:26:12pitrousetmessageid: <1424118372.77.0.917191924581.issue22980@psf.upfronthosting.co.za>
2015-02-16 20:26:12pitroulinkissue22980 messages
2015-02-16 20:26:12pitroucreate