Skip to content

Commit 7c06e01

Browse files
committed
DOC: Add comment of Python CSV default separator test
1 parent a787c20 commit 7c06e01

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/io/parser/python_parser_only.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class PythonParserTests(object):
2121

2222
def test_default_separator(self):
2323
# GH17333
24+
# The csv parser in Python treats 'o' as separator.
2425
text = 'aob\n1o2\n3o4'
2526
expected = DataFrame({'a': [1, 3], 'b': [2, 4]})
2627

0 commit comments

Comments
 (0)