[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2015-01-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset a8c4925e2359 by Victor Stinner in branch '3.4': Issue #20896, #22935: The ssl.get_server_certificate() function now uses the https://hg.python.org/cpython/rev/a8c4925e2359 -- ___ Python tracker

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-04-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 55f62fa5bebc by Antoine Pitrou in branch 'default': Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for maximum compatibility. http://hg.python.org/cpython/rev/55f62fa5bebc --

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-04-16 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20896 ___

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-04-16 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: This bug affected also the other versions I marked. Updating it, so people don't open duplicate bugs as I did with issue #21246 -- nosy: +ddve...@ucar.edu versions: +Python 2.7, Python 3.1, Python 3.2, Python 3.3

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9b91c23f071c by Benjamin Peterson in branch '3.4': merge 3.3 (#20896) http://hg.python.org/cpython/rev/9b91c23f071c -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20896

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-16 Thread Curtis Doty
Changes by Curtis Doty cur...@greenkey.net: -- nosy: +GreenKey ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20896 ___ ___ Python-bugs-list

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-16 Thread STINNER Victor
STINNER Victor added the comment: Benjamin: Could you please mention your change in Misc/NEWS? Is it ok to change that in Python 3.1 3.2? Should the change be mentionned in the doc (:versionchanged:)? -- resolution: fixed - status: closed - open

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: That said, I agree it would be better to use SSLv23 in get_server_certificate(). -- components: +Library (Lib) stage: - needs patch title: test_ssl.test_get_server_certificate() is failing: CA cert of svn.python.org changed? -

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 23add5382fb3 by Benjamin Peterson in branch '3.1': use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) http://hg.python.org/cpython/rev/23add5382fb3 New changeset 789ca594960f by Benjamin Peterson in branch '3.2': use