diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-06 07:22:08 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-06 07:22:08 (GMT) |
commit | e0e797f9be0e7e22761ccaa8ea886d523e1ac831 (patch) | |
tree | 2dc839ae3a95adc185ec053c91206aa236640237 /Modules | |
parent | 02f1d0dc78aefa9a15fc6291fe2631f67f2fa6ef (diff) | |
download | cpython-e0e797f9be0e7e22761ccaa8ea886d523e1ac831.zip cpython-e0e797f9be0e7e22761ccaa8ea886d523e1ac831.tar.gz cpython-e0e797f9be0e7e22761ccaa8ea886d523e1ac831.tar.bz2 |
Remove unused variable (and stop compiler warning)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 6585f48..0322a06 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2453,7 +2453,6 @@ sock_recvfrom_into(PySocketSockObject *s, PyObject *args, PyObject* kwds) int buflen; PyObject *addr = NULL; - PyObject *ret = NULL; if (!PyArg_ParseTupleAndKeywords(args, kwds, "w#|ii:recvfrom", kwlist, &buf, &buflen, &recvlen, &flags)) |