]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused variable and what looks like an ancient relic of an old
authorThomas Wouters <thomas@python.org>
Mon, 24 Jul 2000 16:26:35 +0000 (16:26 +0000)
committerThomas Wouters <thomas@python.org>
Mon, 24 Jul 2000 16:26:35 +0000 (16:26 +0000)
version of SSLeay (now known as OpenSSL.)

Modules/socketmodule.c

index a9bfb26ac4faf985864c7b54cf4ca1a5196bf80e..e95e33927bd0b2321f5128b43a269ee24480c645 100644 (file)
@@ -1977,13 +1977,6 @@ static SSLObject *
 newSSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file)
 {
        SSLObject *self;
-       char *str;
-
-#if 0
-       meth=SSLv23_client_method();
-       meth=SSLv3_client_method();
-       meth=SSLv2_client_method();
-#endif
 
        self = PyObject_New(SSLObject, &SSL_Type); /* Create new object */
        if (self == NULL){