Skip to content

DEPR: error_bad_lines and warn_bad_lines for read_csv #40413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
May 28, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4e867e9
Deprecate
lithomas1 Mar 13, 2021
d230035
stacklevel/warnings fixes
lithomas1 Mar 13, 2021
ce5bf29
Fixes
lithomas1 Mar 13, 2021
8629f87
Fix tests
lithomas1 Mar 13, 2021
06f87a1
Doc fixes for green
lithomas1 Mar 13, 2021
edeef7e
Merge branch 'master' into depr-bad-lines
lithomas1 Mar 15, 2021
f806a4d
Merge branch 'master' into depr-bad-lines
lithomas1 Mar 16, 2021
5b08a88
Update test_common_basic.py
lithomas1 Mar 16, 2021
af3fd15
Update test_common_basic.py
lithomas1 Mar 16, 2021
f70f34e
Merge branch 'master' into depr-bad-lines
lithomas1 Mar 28, 2021
0c76180
Merge branch 'master' of https://github.com/pandas-dev/pandas into de…
lithomas1 Apr 1, 2021
a0406b5
Address Code Review
lithomas1 Apr 6, 2021
89fdc70
oops
lithomas1 Apr 6, 2021
f7265a3
Merge branch 'master' into depr-bad-lines
lithomas1 Apr 27, 2021
1e20b53
Address code review
lithomas1 Apr 28, 2021
2e79f9a
Update io.rst
lithomas1 Apr 28, 2021
fe7541c
Address code review
lithomas1 Apr 29, 2021
772c13f
manual pre-commit
lithomas1 Apr 29, 2021
d00e601
Merge branch 'master' into depr-bad-lines
lithomas1 May 5, 2021
e267aa4
Consolidate
lithomas1 May 23, 2021
e724d0b
Clarify behavior
lithomas1 May 23, 2021
fdef68e
Merge branch 'master' into depr-bad-lines
lithomas1 May 23, 2021
a220293
Merge branch 'master' into depr-bad-lines
lithomas1 May 23, 2021
9b8468a
typing
lithomas1 May 23, 2021
a6af9aa
Fix failed test
lithomas1 May 24, 2021
2f70edc
Clean code
lithomas1 May 24, 2021
93c37df
Merge branch 'master' into depr-bad-lines
lithomas1 May 27, 2021
cf3201c
Update v1.3.0.rst
lithomas1 May 27, 2021
4911b27
Update readers.py
lithomas1 May 27, 2021
f28316b
Fix stacklevel
lithomas1 May 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test_common_basic.py
  • Loading branch information
lithomas1 authored Mar 16, 2021
commit af3fd1542f3f28d2510fc7502d39311b59a435ad
2 changes: 1 addition & 1 deletion pandas/tests/io/parser/common/test_common_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ def test_deprecated_bad_lines_warns(all_parsers, csv1):
):
parser.read_csv(csv1, warn_bad_lines=False)


def test_malformed_second_line(all_parsers):
# see GH14782
parser = all_parsers
Expand Down