Skip to content

Commit cc3dd41

Browse files
committed
Fix for issue pandas-dev#39514
1 parent 435d137 commit cc3dd41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/src/parser/tokenizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,7 @@ double precise_xstrtod(const char *str, char **endptr, char decimal,
16161616
char *p = (char *)str;
16171617
int num_digits;
16181618
int num_decimals;
1619-
int max_digits = 17;
1619+
int max_digits = 309;
16201620
int n;
16211621

16221622
if (maybe_int != NULL) *maybe_int = 1;

0 commit comments

Comments
 (0)