Commit e1b6ab74 authored by Guido van Rossum's avatar Guido van Rossum

Remove the last three uses of PyArg_GetInt() from the source.

parent 46646276
...@@ -522,7 +522,7 @@ BUILD_FUNC_DEF_2(PySocketSock_setblocking,PySocketSockObject*,s,PyObject*,args) ...@@ -522,7 +522,7 @@ BUILD_FUNC_DEF_2(PySocketSock_setblocking,PySocketSockObject*,s,PyObject*,args)
#ifndef MS_WINDOWS #ifndef MS_WINDOWS
int delay_flag; int delay_flag;
#endif #endif
if (!PyArg_GetInt(args, &block)) if (!PyArg_Parse(args, "i", &block))
return NULL; return NULL;
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
#ifndef MS_WINDOWS #ifndef MS_WINDOWS
...@@ -766,7 +766,7 @@ BUILD_FUNC_DEF_2(PySocketSock_listen,PySocketSockObject *,s, PyObject *,args) ...@@ -766,7 +766,7 @@ BUILD_FUNC_DEF_2(PySocketSock_listen,PySocketSockObject *,s, PyObject *,args)
{ {
int backlog; int backlog;
int res; int res;
if (!PyArg_GetInt(args, &backlog)) if (!PyArg_Parse(args, "i", &backlog))
return NULL; return NULL;
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
if (backlog < 1) if (backlog < 1)
...@@ -938,7 +938,7 @@ BUILD_FUNC_DEF_2(PySocketSock_shutdown,PySocketSockObject *,s, PyObject *,args) ...@@ -938,7 +938,7 @@ BUILD_FUNC_DEF_2(PySocketSock_shutdown,PySocketSockObject *,s, PyObject *,args)
{ {
int how; int how;
int res; int res;
if (!PyArg_GetInt(args, &how)) if (!PyArg_Parse(args, "i", &how))
return NULL; return NULL;
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
res = shutdown(s->sock_fd, how); res = shutdown(s->sock_fd, how);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment