Kaydet (Commit) 7b87f85c authored tarafından Fred Drake's avatar Fred Drake

Add :method info to the PyArg_ParseTuple() format strings for poll objects.

üst e9719fe1
...@@ -362,7 +362,7 @@ poll_register(pollObject *self, PyObject *args) ...@@ -362,7 +362,7 @@ poll_register(pollObject *self, PyObject *args)
PyObject *o, *key, *value; PyObject *o, *key, *value;
int fd, events = POLLIN | POLLPRI | POLLOUT; int fd, events = POLLIN | POLLPRI | POLLOUT;
if (!PyArg_ParseTuple(args, "O|i", &o, &events)) { if (!PyArg_ParseTuple(args, "O|i:register", &o, &events)) {
return NULL; return NULL;
} }
...@@ -392,7 +392,7 @@ poll_unregister(pollObject *self, PyObject *args) ...@@ -392,7 +392,7 @@ poll_unregister(pollObject *self, PyObject *args)
PyObject *o, *key; PyObject *o, *key;
int fd; int fd;
if (!PyArg_ParseTuple(args, "O", &o)) { if (!PyArg_ParseTuple(args, "O:unregister", &o)) {
return NULL; return NULL;
} }
...@@ -431,7 +431,7 @@ poll_poll(pollObject *self, PyObject *args) ...@@ -431,7 +431,7 @@ poll_poll(pollObject *self, PyObject *args)
int timeout = 0, poll_result, i, j; int timeout = 0, poll_result, i, j;
PyObject *value = NULL, *num = NULL; PyObject *value = NULL, *num = NULL;
if (!PyArg_ParseTuple(args, "|O", &tout)) { if (!PyArg_ParseTuple(args, "|O:poll", &tout)) {
return NULL; return NULL;
} }
......
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