PySocketSock_methods: Added "connect_ex" so the method can actually be
called!
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index a225047..5819346 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -980,6 +980,7 @@
 	{"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},