Skip to content

Commit 9d5f110

Browse files
committed
Changed skipfooter to int64_t
1 parent 06d35ea commit 9d5f110

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/_libs/parsers.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ cdef extern from "parser/tokenizer.h":
173173
void *skipset
174174
PyObject *skipfunc
175175
int64_t skip_first_N_rows
176-
int skipfooter
176+
int64_t skipfooter
177177
# pick one, depending on whether the converter requires GIL
178178
float64_t (*double_converter_nogil)(const char *, char **,
179179
char, char, char,

pandas/_libs/src/parser/tokenizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ typedef struct parser_t {
158158
void *skipset;
159159
PyObject *skipfunc;
160160
int64_t skip_first_N_rows;
161-
int skip_footer;
161+
int64_t skip_footer;
162162
// pick one, depending on whether the converter requires GIL
163163
double (*double_converter_nogil)(const char *, char **,
164164
char, char, char, int);

0 commit comments

Comments
 (0)