diff options
author | Georg Brandl <georg@python.org> | 2007-11-25 00:31:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-25 00:31:12 (GMT) |
commit | 0d84d13c3fcbcec7c476e76dd361a047b8a9c8d2 (patch) | |
tree | f9c277fd73ce1b1a08e5765777562503c540b477 /Objects | |
parent | 5fb8eb9e410821d6b7919445765cd4849f1fb5cc (diff) | |
download | cpython-0d84d13c3fcbcec7c476e76dd361a047b8a9c8d2.zip cpython-0d84d13c3fcbcec7c476e76dd361a047b8a9c8d2.tar.gz cpython-0d84d13c3fcbcec7c476e76dd361a047b8a9c8d2.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 7e3a84e..887b28a 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; |