diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-17 21:40:18 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-17 21:40:18 (GMT) |
commit | 9befeb3743aaaee6aef036b5a1092cc02d9b4dfa (patch) | |
tree | 1ae591fd2fac327fc5d689d4e10fea0c03cd24de /Modules | |
parent | f40834f39b7bf1e667fbe040fe869232d2488f60 (diff) | |
parent | 5e98141f9f576934fe5635c66614f82be1ee0a9a (diff) | |
download | cpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.zip cpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.tar.gz cpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.tar.bz2 |
Issue #5421: merge fix
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 44eeeb7..e2fdb5e 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2747,17 +2747,28 @@ sock_sendto(PySocketSockObject *s, PyObject *args) Py_buffer pbuf; PyObject *addro; char *buf; - Py_ssize_t len; + Py_ssize_t len, arglen; sock_addr_t addrbuf; int addrlen, n = -1, flags, timeout; flags = 0; - if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) { - PyErr_Clear(); - if (!PyArg_ParseTuple(args, "y*iO:sendto", - &pbuf, &flags, &addro)) - return NULL; + arglen = PyTuple_Size(args); + switch (arglen) { + case 2: + PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro); + break; + case 3: + PyArg_ParseTuple(args, "y*iO:sendto", + &pbuf, &flags, &addro); + break; + default: + PyErr_Format(PyExc_TypeError, + "sendto() takes 2 or 3 arguments (%d given)", + arglen); } + if (PyErr_Occurred()) + return NULL; + buf = pbuf.buf; len = pbuf.len; |