Skip to content

Commit 1ef9259

Browse files
committed
chore: add comment explaining consecutive thousand separators in C engine
1 parent cd536fb commit 1ef9259

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/parser/common/test_common_basic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ def test_read_csv_local(all_parsers, csv1):
7878
("2,334", 2334),
7979
("-2,334", -2334),
8080
("-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.
8183
("2,,,,,,,,,,,,,,,5", 25),
8284
("2,,3,4,,,,,,,,,,,,5", 2345),
8385
],

0 commit comments

Comments
 (0)