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 christian.heimes
Recipients Arfrever, abn, barry, christian.heimes, vstinner
Date 2013-08-16.00:37:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376613426.83.0.782591995526.issue18709@psf.upfronthosting.co.za>
In-reply-to
Content
Brian Cameron from Oracle has requested a fix for Python 2.6. I have attached a patch for 2.6. In order to compile and test the patch I had to modify _ssl.c to handle OPENSSL_NO_SSL2. I also copied keycert.pem from 2.7 to fix two test failures. The former keycert.pem has expired.

It's a bit of a challenge to compile Python 2.6 on modern Linux OS. I had to set a couple of flags and overwrite MACHDEP:

export arch=$(dpkg-architecture -qDEB_HOST_MULTIARCH)
export LDFLAGS="-L/usr/lib/$arch -L/lib/$arch"
export CFLAGS="-I/usr/include/$arch"
export CPPFLAGS="-I/usr/include/$arch"
./configure --config-cache --with-pydebug
make -j4 MACHDEP=linux2
History
Date User Action Args
2013-08-16 00:37:06christian.heimessetrecipients: + christian.heimes, barry, vstinner, Arfrever, abn
2013-08-16 00:37:06christian.heimessetmessageid: <1376613426.83.0.782591995526.issue18709@psf.upfronthosting.co.za>
2013-08-16 00:37:06christian.heimeslinkissue18709 messages
2013-08-16 00:37:01christian.heimescreate