]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused variable.
authorGeorg Brandl <georg@python.org>
Sun, 25 Nov 2007 00:31:12 +0000 (00:31 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 25 Nov 2007 00:31:12 +0000 (00:31 +0000)
Objects/stringobject.c

index 7e3a84e6d254c872be8a3796dae5dc6d2dfd61aa..887b28a70ba5a7c28566bccd1c86858a4484d0d1 100644 (file)
@@ -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;