From: Alex Gaynor Date: Mon, 14 May 2018 20:48:14 +0000 (-0400) Subject: Fixed an unused variable warning introduced in GH-6800 (GH-6816) X-Git-Tag: v3.8.0a1~1861 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00717a46a120dd8c8c74970fd75d201a5f42ab18;p=thirdparty%2FPython%2Fcpython.git Fixed an unused variable warning introduced in GH-6800 (GH-6816) --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 650f030345f7..7670833bf5f5 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -882,7 +882,6 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, { PySSLSocket *self; SSL_CTX *ctx = sslctx->ctx; - long mode; self = PyObject_New(PySSLSocket, &PySSLSocket_Type); if (self == NULL)