-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: Removed the kwds param in to_csv #13804
CLN: Removed the kwds param in to_csv #13804
Conversation
Boo...tests and the |
Current coverage is 85.23% (diff: 100%)
|
@@ -330,6 +330,7 @@ API changes | |||
~~~~~~~~~~~ | |||
|
|||
|
|||
- ``Series.to_csv`` has dropped the ``nanRep`` parameter in favor of ``na_rep`` (:issue:`13804`) |
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.
It had not really been dropped 'in favor of', I think? As it did actually not have any effect?
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.
this was not deprecated I think (but let's still remove)
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.
sorry, just saw @jorisvandenbossche comment. yep let's remove.
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.
Yep, sounds good. Done.
So we did actually already remove |
@@ -332,6 +332,7 @@ API changes | |||
~~~~~~~~~~~ | |||
|
|||
|
|||
- ``Series.to_csv`` has dropped the ``nanRep`` parameter (:issue:`13804`) |
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.
put here that it is replaced by nan_rep
. I think you can put this in the deprecated removals section as it WAS deprecated.
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.
Done.
Closes pandas-devgh-8206. [ci skip]
@jreback , @jorisvandenbossche : made the requested doc changes (hence the |
@gfyoung Thanks! |
We aren't using it anymore with the removal of parameters like
engine
. Closes #8206.