summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-06-25 00:09:05 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-06-25 00:09:05 (GMT)
commitb4f0e644bcec625d3bb7964d391ddd363083f2d1 (patch)
treecf8df3bee3cc247e125143daf014648c21d7af8d /Modules
parent69ed774fe1ed1ea33e301308c3eb15f1d0afd8e4 (diff)
downloadcpython-b4f0e644bcec625d3bb7964d391ddd363083f2d1.zip
cpython-b4f0e644bcec625d3bb7964d391ddd363083f2d1.tar.gz
cpython-b4f0e644bcec625d3bb7964d391ddd363083f2d1.tar.bz2
Merged revisions 82210 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82210 | antoine.pitrou | 2010-06-25 02:03:21 +0200 (ven., 25 juin 2010) | 4 lines Issue #9075: In the ssl module, remove the setting of a `debug` flag on an OpenSSL structure. ........
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ssl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index c02703d..6ed1a9f 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -488,7 +488,6 @@ static PyObject *PySSL_SSLdo_handshake(PySSLObject *self)
} while (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE);
if (ret < 1)
return PySSL_SetError(self, ret, __FILE__, __LINE__);
- self->ssl->debug = 1;
if (self->peer_cert)
X509_free (self->peer_cert);