From: Neal Norwitz Date: Tue, 6 Jun 2006 07:22:08 +0000 (+0000) Subject: Remove unused variable (and stop compiler warning) X-Git-Tag: v2.5b1~234 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e0e797f9be0e7e22761ccaa8ea886d523e1ac831;p=python Remove unused variable (and stop compiler warning) --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 6585f489bb..0322a061a6 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))