-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
ENH: Deprecate positional arguments for DataFrame.fillna and Series.fillna (GH41485) #41559
ENH: Deprecate positional arguments for DataFrame.fillna and Series.fillna (GH41485) #41559
Conversation
I was able to find a few hundreds of On a separate note, should positional args for |
Nice, thanks!
The value of |
275ed38
to
aeb16d9
Compare
Gotcha! |
aeb16d9
to
741df4d
Compare
@@ -5179,6 +5179,7 @@ def fillna( | |||
) -> DataFrame | None: | |||
... | |||
|
|||
@deprecate_nonkeyword_arguments(version=None, allowed_args=["self", "value"]) |
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.
Changed from "2.0" to None as per reviewer comment in another related PR.
thanks @jackzyliu |
…illna (GH41485) (pandas-dev#41559) Co-authored-by: Jack Liu <5811028+zheyuan-liu@users.noreply.github.com>
…illna (GH41485) (pandas-dev#41559) Co-authored-by: Jack Liu <5811028+zheyuan-liu@users.noreply.github.com>
inplace
#41485