From 0d2d759d8c7dee8317cf02ae90d18613629004dd Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 20 Nov 1997 21:39:02 +0000 Subject: [PATCH] PySocketSock_methods: Added "connect_ex" so the method can actually be called! --- Modules/socketmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index a2250478d87..58193467936 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},