We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a787c20 commit 7c06e01Copy full SHA for 7c06e01
pandas/tests/io/parser/python_parser_only.py
@@ -21,6 +21,7 @@ class PythonParserTests(object):
21
22
def test_default_separator(self):
23
# GH17333
24
+ # The csv parser in Python treats 'o' as separator.
25
text = 'aob\n1o2\n3o4'
26
expected = DataFrame({'a': [1, 3], 'b': [2, 4]})
27
0 commit comments