-
-
Notifications
You must be signed in to change notification settings - Fork 140
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
type args and kwargs as Any in frame.pyi #1175
Conversation
@overload | ||
def mode( | ||
self, | ||
axis: Axis = ..., | ||
skipna: _bool = ..., | ||
numeric_only: _bool = ..., | ||
*, | ||
level: Level, | ||
**kwargs, | ||
) -> Self: ... | ||
@overload | ||
def mode( | ||
self, | ||
axis: Axis = ..., | ||
skipna: _bool = ..., | ||
level: None = ..., | ||
numeric_only: _bool = ..., | ||
**kwargs, | ||
dropna: _bool = ..., | ||
) -> Series: ... |
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.
skipna
and level
aren't valid arguments to DataFrame.mode
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.mode.html
these may have been taken from a really old pandas version?
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.
skipna
andlevel
aren't valid arguments toDataFrame.mode
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.mode.htmlthese may have been taken from a really old pandas version?
the original stubs created by Microsoft were based on pandas 1.3 (or maybe earlier). So there is still a lot of stuff remaining from that version that never got cleaned up. Including updates to pandas beyond that.
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.
thanks @MarcoGorelli
ref #1168
These are all cases where
kwargs
/args
just exist for compatibility with numpyExceptions are:
query
: typekwargs
inDataFrame.query
according toDataFrame.eval
#1173pct_change
: typekwargs
inpct_change
according to params inshift
#1169to_clipboard
: typekwargs
inDataFrame.to_clipboard
according toto_csv
#1174assign
: I'll open a separate PR for that one nowagg
/transform
: users can pass their own function so these can really beAny
Closes #xxxx (Replace xxxx with the Github issue number)
Tests added: Please use
assert_type()
to assert the type of any return value