From: Georg Brandl Date: Sun, 25 Nov 2007 00:31:12 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v3.0a2~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d84d13c3fcbcec7c476e76dd361a047b8a9c8d2;p=thirdparty%2FPython%2Fcpython.git Remove unused variable. --- diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 7e3a84e6d254..887b28a70ba5 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -2847,7 +2847,6 @@ static PyObject * string_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { PyObject *x = NULL, *it; - PyObject *(*iternext)(PyObject *); const char *encoding = NULL; const char *errors = NULL; PyObject *new = NULL;