PySocketSock_methods: Added "connect_ex" so the method can actually be

called!
This commit is contained in:
Barry Warsaw 1997-11-20 21:39:02 +00:00
parent 4a9aff2eba
commit 0d2d759d8c
1 changed files with 1 additions and 0 deletions

View File

@ -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},