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 cd536fb commit 1ef9259Copy full SHA for 1ef9259
pandas/tests/io/parser/common/test_common_basic.py
@@ -78,6 +78,8 @@ def test_read_csv_local(all_parsers, csv1):
78
("2,334", 2334),
79
("-2,334", -2334),
80
("-2,334,", -2334),
81
+ # Multiple consecutive thousand separators are allowed in C engine,
82
+ # but it's not necessarily intended behavior and may change in the future.
83
("2,,,,,,,,,,,,,,,5", 25),
84
("2,,3,4,,,,,,,,,,,,5", 2345),
85
],
0 commit comments