We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d35ea commit 9d5f110Copy full SHA for 9d5f110
pandas/_libs/parsers.pyx
@@ -173,7 +173,7 @@ cdef extern from "parser/tokenizer.h":
173
void *skipset
174
PyObject *skipfunc
175
int64_t skip_first_N_rows
176
- int skipfooter
+ int64_t skipfooter
177
# pick one, depending on whether the converter requires GIL
178
float64_t (*double_converter_nogil)(const char *, char **,
179
char, char, char,
pandas/_libs/src/parser/tokenizer.h
@@ -158,7 +158,7 @@ typedef struct parser_t {
158
void *skipset;
159
PyObject *skipfunc;
160
int64_t skip_first_N_rows;
161
- int skip_footer;
+ int64_t skip_footer;
162
// pick one, depending on whether the converter requires GIL
163
double (*double_converter_nogil)(const char *, char **,
164
char, char, char, int);
0 commit comments