summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-06-06 07:22:08 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-06-06 07:22:08 (GMT)
commite0e797f9be0e7e22761ccaa8ea886d523e1ac831 (patch)
tree2dc839ae3a95adc185ec053c91206aa236640237 /Modules
parent02f1d0dc78aefa9a15fc6291fe2631f67f2fa6ef (diff)
downloadcpython-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.c1
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))