From: Barry Warsaw Date: Thu, 20 Nov 1997 21:39:02 +0000 (+0000) Subject: PySocketSock_methods: Added "connect_ex" so the method can actually be X-Git-Tag: v1.5b1~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d2d759d8c7dee8317cf02ae90d18613629004dd;p=python PySocketSock_methods: Added "connect_ex" so the method can actually be called! --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index a2250478d8..5819346793 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -980,6 +980,7 @@ static PyMethodDef PySocketSock_methods[] = { {"bind", (PyCFunction)PySocketSock_bind}, {"close", (PyCFunction)PySocketSock_close}, {"connect", (PyCFunction)PySocketSock_connect}, + {"connect_ex", (PyCFunction)PySocketSock_connect_ex}, {"fileno", (PyCFunction)PySocketSock_fileno}, #ifndef NO_DUP {"dup", (PyCFunction)PySocketSock_dup},