[Python-checkins] CVS: python/dist/src/Modules socketmodule.c,1.121,1.122
Thomas Wouters
python-dev@python.org
2000年7月24日 09:26:37 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv17514/Modules
Modified Files:
socketmodule.c
Log Message:
Remove unused variable and what looks like an ancient relic of an old
version of SSLeay (now known as OpenSSL.)
Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.121
retrieving revision 1.122
diff -C2 -r1.121 -r1.122
*** socketmodule.c 2000年07月24日 16:06:23 1.121
--- socketmodule.c 2000年07月24日 16:26:35 1.122
***************
*** 1978,1988 ****
{
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 */
--- 1978,1981 ----