Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion pandas/core/arrays/timedeltas.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def __floordiv__(self, other):

# at this point we should only have numeric scalars; anything
# else will raise
result = self._ndarray / other
result = self._ndarray // other
freq = None
if self.freq is not None:
# Note: freq gets division, not floor-division
Expand Down