From: Fred Drake Date: Wed, 12 Jan 2005 16:00:55 +0000 (+0000) Subject: remove unused variable X-Git-Tag: v2.5a0~2118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7c27bef526e1b9cd3bdc34735c9d1a5b5357374;p=thirdparty%2FPython%2Fcpython.git remove unused variable --- diff --git a/Python/marshal.c b/Python/marshal.c index 2f0a6427a6ae..d0fcac729699 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -261,7 +261,6 @@ w_object(PyObject *v, WFILE *p) w_object((PyObject *)NULL, p); } else if (PyAnySet_Check(v)) { - int pos; PyObject *value, *it; if (PyObject_TypeCheck(v, &PySet_Type))