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 2a20a2f commit c9f2bd1Copy full SHA for c9f2bd1
pandas/tests/io/parser/test_unsupported.py
@@ -55,7 +55,10 @@ def test_c_engine(self):
55
read_csv(StringIO(data), sep=r"\s")
56
with tm.assert_produces_warning(parsers.ParserWarning):
57
read_csv(StringIO(data), sep="\t", quotechar=chr(128))
58
- with tm.assert_produces_warning(parsers.ParserWarning):
+ with tm.assert_produces_warning(
59
+ parsers.ParserWarning, raise_on_extra_warnings=False
60
+ ):
61
+ # Additionally raises DeprecationWarning: gh-16737
62
read_csv(StringIO(data), skipfooter=1)
63
64
text = """ A B C D E
0 commit comments