[issue23143] Remove some conditional code in _ssl.c

2015-01-04 Thread Ned Deily
Ned Deily added the comment: Note that this change causes _ssl.so builds to fail on at least one buildbot, the OS X Tiger one, where the system OpenSSL version is 0.9.7. I've asked the buildbot owner to consider installing a local copy of a current OpenSSL. There may be other buildbots affec

[issue23143] Remove some conditional code in _ssl.c

2015-01-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks! Now done. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue23143] Remove some conditional code in _ssl.c

2015-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 37c6fd09f71f by Antoine Pitrou in branch 'default': Issue #23143: Remove compatibility with OpenSSLs older than 0.9.8. https://hg.python.org/cpython/rev/37c6fd09f71f -- ___ Python tracker

[issue23143] Remove some conditional code in _ssl.c

2015-01-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset e9f05a4a5f16 by Antoine Pitrou in branch 'default': Issue #23143: Remove compatibility with OpenSSLs older than 0.9.8. https://hg.python.org/cpython/rev/e9f05a4a5f16 -- nosy: +python-dev ___ Python tracke

[issue23143] Remove some conditional code in _ssl.c

2015-01-03 Thread Donald Stufft
Donald Stufft added the comment: +1, This sounds completely reasonable to do to me. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue23143] Remove some conditional code in _ssl.c

2015-01-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen ___ Python tracker ___ ___ Python-bug

[issue23143] Remove some conditional code in _ssl.c

2015-01-01 Thread Antoine Pitrou
New submission from Antoine Pitrou: There's a lot of conditional code in _ssl.c, meant to address the unavailability of some features in old OpenSSL versions. I think for 3.5 we should require at least 0.9.8 (which is already old), and consequently remove some of those conditionals. -