We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
main
pandas.set_option
Encountered when fixing up PR02 errors in #57111
The documented arguments for pandas.set_option are (pat, value) per the docstring:
(pat, value)
pandas/pandas/_config/config.py
Line 328 in f636d7d
The actual function arguments of the underlying _set_option function are (*args, **kwargs) because it accepts pairs of patterns to update values to.
_set_option
(*args, **kwargs)
Line 157 in f636d7d
Either:
The text was updated successfully, but these errors were encountered:
I'd be against changing the implementation. Updating the docstring sounds good!
Sorry, something went wrong.
Take
jrmylow
Successfully merging a pull request may close this issue.
Pandas version checks
main
hereLocation of the documentation
pandas.set_option
Documentation problem
Encountered when fixing up PR02 errors in #57111
The documented arguments for
pandas.set_option
are(pat, value)
per the docstring:pandas/pandas/_config/config.py
Line 328 in f636d7d
The actual function arguments of the underlying
_set_option
function are(*args, **kwargs)
because it accepts pairs of patterns to update values to.pandas/pandas/_config/config.py
Line 157 in f636d7d
Suggested fix for documentation
Either:
The text was updated successfully, but these errors were encountered: