[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-04 Thread Kali Kaneko
Kali Kaneko added the comment: my bad, I had not actually tested the sslv2 and sslv3 options, since they were not available in the python in debian sid. thanks for the quick fix! -- ___ Python tracker ___

[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.4, Python 3.5 ___ Python tracker ___ _

[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7af5d5493497 by Antoine Pitrou in branch '2.7': Fix #22987: update the compatibility matrix for a SSLv23 client. https://hg.python.org/cpython/rev/7af5d5493497 New changeset 9f03572690d2 by Antoine Pitrou in branch '3.4': Fix #22987: update the comp

[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Alex is right. The current doc was valid for older OpenSSL versions, which sent a SSLv2 hello with SSLv23. Reference from the OpenSSL docs: """If the cipher list does not contain any SSLv2 ciphersuites (the default cipher list does not) or extensions are requ

[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-03 Thread Alex Gaynor
Alex Gaynor added the comment: I agree this is a bug, but I believe the correct output is: no yes yes yes yes yes -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou ___ Python tracker ___

[issue22987] ssl module documentation: incorrect compatibility matrix

2014-12-03 Thread Kali Kaneko
New submission from Kali Kaneko: The SSLv23 row that can be read in the socket creation section in the documentation for the ssl module looks incorrect: https://docs.python.org/2.7/library/ssl.html#socket-creation by my tests (with python 2.7.8) that row should read: yes no yes yes yes yes in