Skip to content

Commit 6b90887

Browse files
committed
reduce the diff
1 parent acbfaa0 commit 6b90887

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Modules/_csv.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,9 +1027,8 @@ Reader_iternext(PyObject *op)
10271027
return NULL;
10281028
}
10291029
++self->line_num;
1030-
1031-
linelen = PyUnicode_GET_LENGTH(lineobj);
10321030
pos = 0;
1031+
linelen = PyUnicode_GET_LENGTH(lineobj);
10331032

10341033
while (pos < linelen) {
10351034
/* For IN_FIELD and IN_QUOTED_FIELD states, optimize by finding

0 commit comments

Comments
 (0)