8000 BUG: Fix a bug in 'timedelta_range' that produced an extra point on a edge case (fix #30353) by hasB4K · Pull Request #33498 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: Fix a bug in 'timedelta_range' that produced an extra point on a edge case (fix #30353) #33498

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 17 commits into from
May 9, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

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
CLN: fix typo
  • Loading branch information
hasB4K committed May 9, 2020
commit 2959ce6be259fc5f92c7f8028e6b5885e57d522d
2 changes: 1 addition & 1 deletion pandas/core/arrays/_ranges.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def generate_regular_range(
----------
start : Timedelta, Timestamp or None
first point of produced date range
start : Timedelta, Timestamp or None
end : Timedelta, Timestamp or None
last point of produced date range
periods : int
number of periods in produced date range
Expand Down
0