Merged revisions 76807 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76807 | benjamin.peterson | 2009-12-13 13:27:02 -0600 (Sun, 13 Dec 2009) | 1 line

  remove unused variable
........
This commit is contained in:
Benjamin Peterson 2009-12-13 19:28:09 +00:00
parent bf5ff76597
commit 05516130fb
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;