From: Marc-André Lemburg Date: Fri, 7 Jul 2000 14:13:29 +0000 (+0000) Subject: Removed a prototype which is not used in socketmodule.c X-Git-Tag: v2.0b1~1028 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71f36983b90080a08b0f6e2049b96768896d1d3c;p=thirdparty%2FPython%2Fcpython.git Removed a prototype which is not used in socketmodule.c Patch by T. Wouters. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index b10268eb943e..f88f6baeffb4 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -355,7 +355,6 @@ typedef struct { } SSLObject; 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);