commit | aef189939e084ff20b22841f31d71cd12236af60 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Dec 13 19:27:02 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Dec 13 19:27:02 2009 +0000 |
tree | d897ca7ae99944e539de815831f18aa312948fc1 | |
parent | ddd392cbb9a94355a2ea32da4a42371d1333bfb8 [diff] |
remove unused variable
diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c index bd6cd5f..3732f46 100644 --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c
@@ -577,7 +577,7 @@ iobase_readlines(PyObject *self, PyObject *args) { Py_ssize_t hint = -1, length = 0; - PyObject *hintobj = Py_None, *result; + PyObject *result; if (!PyArg_ParseTuple(args, "|O&:readlines", &_PyIO_ConvertSsize_t, &hint)) { return NULL;