[Python-checkins] CVS: python/dist/src/Modules socketmodule.c,1.112,1.113

M.-A. Lemburg python-dev@python.org
Fri, 7 Jul 2000 07:13:32 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv25420

Modified Files:
	socketmodule.c 
Log Message:
Removed a prototype which is not used in socketmodule.c

Patch by T. Wouters.

Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -r1.112 -r1.113
*** socketmodule.c	2000/07/01 03:40:12	1.112
--- socketmodule.c	2000/07/07 14:13:29	1.113
***************
*** 356,360 ****
  
  staticforward PyTypeObject SSL_Type;
- staticforward int SSL_setattr(SSLObject *self, char *name, PyObject *v);
  staticforward PyObject *SSL_SSLwrite(SSLObject *self, PyObject *args);
  staticforward PyObject *SSL_SSLread(SSLObject *self, PyObject *args);
--- 356,359 ----