[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: This should be fixed now. Thank you very much! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 33fc081285b2 by Antoine Pitrou in branch '2.7': Issue #21976: Fix test_ssl to accept LibreSSL version strings. http://hg.python.org/cpython/rev/33fc081285b2 -- ___ Python tracker

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4dac45f88d45 by Antoine Pitrou in branch '3.4': Issue #21976: Fix test_ssl to accept LibreSSL version strings. http://hg.python.org/cpython/rev/4dac45f88d45 New changeset 98aec1d9e2a0 by Antoine Pitrou in branch 'default': Issue #21976: Fix test_ssl

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't have LibreSSL to test but the patch sounds fine to me. -- ___ Python tracker ___ ___ Python-

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-14 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +christian.heimes, dstufft, giampaolo.rodola, pitrou versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ ___

[issue21976] Fix test_ssl.py to handle LibreSSL versioning appropriately

2014-07-13 Thread William Orr
New submission from William Orr: Currently, test_ssl.py requires the version information to match the OpenSSL format exactly, and to be less than 2.0. LibreSSL, a drop-in replacement for OpenSSL, has started its version numbers at 2.0.0, and reports it slightly differently. This patch addresse