commit | 3b26e8cab738bec05e7e5178a390b9b4b7f208b6 | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Mon May 14 16:42:30 2018 -0700 |
committer | GitHub <noreply@github.com> | Mon May 14 16:42:30 2018 -0700 |
tree | 271b0ee4fc57cfe500b63c6c25fcfff43dc81924 | |
parent | 5195039bb5529f1b18d30e8bfcabdee739912d76 [diff] |
Fixed an unused variable warning introduced in GH-6800 (GH-6816) (cherry picked from commit 00717a46a120dd8c8c74970fd75d201a5f42ab18) Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 650f030..7670833 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c
@@ -882,7 +882,6 @@ { PySSLSocket *self; SSL_CTX *ctx = sslctx->ctx; - long mode; self = PyObject_New(PySSLSocket, &PySSLSocket_Type); if (self == NULL)