]> granicus.if.org Git - python/commitdiff
Fixed an unused variable warning introduced in GH-6800 (GH-6816)
authorAlex Gaynor <alex.gaynor@gmail.com>
Mon, 14 May 2018 20:48:14 +0000 (16:48 -0400)
committerGitHub <noreply@github.com>
Mon, 14 May 2018 20:48:14 +0000 (16:48 -0400)
Modules/_ssl.c

index 650f030345f7a6b0ad65cb8b0ad4395ce87deffb..7670833bf5f5482702b54bb80f7158e2aa29f1c0 100644 (file)
@@ -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)