diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-13 19:27:02 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-13 19:27:02 +0000 |
commit | aef189939e084ff20b22841f31d71cd12236af60 (patch) | |
tree | d897ca7ae99944e539de815831f18aa312948fc1 | |
parent | ddd392cbb9a94355a2ea32da4a42371d1333bfb8 (diff) | |
download | cpython-git-aef189939e084ff20b22841f31d71cd12236af60.tar.gz |
remove unused variable
-rw-r--r-- | Modules/_io/iobase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c index bd6cd5f8de..3732f46f4a 100644 --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -577,7 +577,7 @@ static PyObject * 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; |