We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0755c64 commit da9d4e6Copy full SHA for da9d4e6
pandas/_libs/parsers.pyx
@@ -1798,7 +1798,8 @@ cdef inline int _try_double_nogil(parser_t *parser,
1798
data[0] = NA
1799
else:
1800
data[0] = double_converter(word, &p_end, parser.decimal,
1801
- parser.sci, parser.thousands, 1, &error)
+ parser.sci, parser.thousands,
1802
+ 1, &error)
1803
if error != 0 or p_end == word or p_end[0]:
1804
error = 0
1805
if (strcasecmp(word, cinf) == 0 or
@@ -2079,7 +2080,6 @@ cdef kh_str_starts_t* kset_from_list(list values) except NULL:
2079
2080
2081
table = kh_init_str_starts()
2082
-
2083
for i in range(len(values)):
2084
val = values[i]
2085
0 commit comments