8000 REF: Use * syntax to make reindex kwargs keyword only by mroeschke · Pull Request #50853 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

REF: Use * syntax to make reindex kwargs keyword only #50853

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

Merged
merged 14 commits into from
Jan 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Series has different default
  • Loading branch information
mroeschke committed Jan 19, 2023
commit 7e5d256c9ef8879647f25906988192a8d4dd321e
2 changes: 1 addition & 1 deletion 7D98 pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -4881,7 +4881,7 @@ def reindex(
method: str | None = None,
copy: bool | None = None,
level: Level | None = None,
fill_value: Scalar = np.nan,
fill_value: Scalar = None,
limit: int | None = None,
tolerance=None,
) -> Series:
Expand Down
0