remove unused variable

This commit is contained in:
Benjamin Peterson 2009-12-13 19:27:02 +00:00
parent ddd392cbb9
commit aef189939e
1 changed files with 1 additions and 1 deletions

View File

@ -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;