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
Opening mainly for an issue to reference in upcoming PR.
This behavior is not present in 0.22.0, is present in master as of 04beec7
tdi = pd.TimedeltaIndex(['1day', '2days', '3days']) ser = pd.Series(tdi) tdi.name = 'foo' ser.name = 'bar' >>> (tdi + ser).name 'foo' >>> (ser + tdi).name 'foo' >>> (ser - tdi).name 'foo' >>> (tdi - ser).name 'foo'
These names should all be coming back as None.
None
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Opening mainly for an issue to reference in upcoming PR.
This behavior is not present in 0.22.0, is present in master as of 04beec7
These names should all be coming back as
None
.The text was updated successfully, but these errors were encountered: