We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5686313 commit 3df837aCopy full SHA for 3df837a
pandas/_libs/writers.pyx
@@ -36,7 +36,7 @@ def write_csv_rows(
36
"""
37
# In crude testing, N>100 yields little marginal improvement
38
cdef:
39
- Py_ssize_t i, j, k = len(data_index), N = 100, ncols = len(cols)
+ Py_ssize_t i, j = 0, k = len(data_index), N = 100, ncols = len(cols)
40
list rows
41
42
# pre-allocate rows
0 commit comments