Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0551613

Browse files
committed
Merged revisions 76807 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r76807 | benjamin.peterson | 2009-12-13 13:27:02 -0600 (Sun, 13 Dec 2009) | 1 line remove unused variable ........
1 parent bf5ff76 commit 0551613

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_io/iobase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ static PyObject *
577577
iobase_readlines(PyObject *self, PyObject *args)
578578
{
579579
Py_ssize_t hint = -1, length = 0;
580-
PyObject *hintobj = Py_None, *result;
580+
PyObject *result;
581581

582582
if (!PyArg_ParseTuple(args, "|O&:readlines", &_PyIO_ConvertSsize_t, &hint)) {
583583
return NULL;

0 commit comments

Comments
 (0)