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 d89790c commit 79de61cCopy full SHA for 79de61c
pandas/io/tests/parser/test_unsupported.py
@@ -44,16 +44,6 @@ def test_c_engine(self):
44
data = 'a b c\n1 2 3'
45
msg = 'does not support'
46
47
- # specify C-unsupported options with python-unsupported option
48
- # (options will be ignored on fallback, raise)
49
- with tm.assertRaisesRegexp(ValueError, msg):
50
- read_table(StringIO(data), sep=None,
51
- delim_whitespace=False, dtype={'a': float})
52
53
- read_table(StringIO(data), sep='\s', dtype={'a': float})
54
55
- read_table(StringIO(data), skipfooter=1, dtype={'a': float})
56
-
57
# specify C engine with unsupported options (raise)
58
with tm.assertRaisesRegexp(ValueError, msg):
59
read_table(StringIO(data), engine='c',
0 commit comments