-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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
CLN: Deprecate non-keyword arguments in read_table #41485 #41717
CLN: Deprecate non-keyword arguments in read_table #41485 #41717
Conversation
|
||
def test_read_table_posargs_deprecation(all_parsers): | ||
# https://github.com/pandas-dev/pandas/issues/41485 | ||
f = StringIO("a\tb\n1\t2") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you not use a single-letter variable name? other than that, looks good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok I pushed it to concat 's PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you push it here instead and keep the two PRs separate?
|
||
def test_read_table_posargs_deprecation(all_parsers): | ||
# https://github.com/pandas-dev/pandas/issues/41485 | ||
f = StringIO("a\tb\n1\t2") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you push it here instead and keep the two PRs separate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI needs #41665 to be merged to be green, but the PR lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work, looks good to me
thanks @tegardp |
inplace
#41485