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
Found during #7299.
dates = ['2000-01-31', '2000-02-29', '2000-03-31', '2000-04-30'] pd.DatetimeIndex(dates).inferred_freq # M pd.DatetimeIndex(dates, tz='US/Eastern').inferred_freq # M pd.DatetimeIndex(dates, tz='Mexico/General').inferred_freq # M pd.DatetimeIndex(dates, tz='Asia/Tokyo').inferred_freq # None pd.DatetimeIndex(dates, tz='Europe/Paris').inferred_freq # None pd.DatetimeIndex(dates, tz='Australia/Sydney').inferred_freq # None
The text was updated successfully, but these errors were encountered:
this should use localize the timestamps before returning i8: https://github.com/pydata/pandas/blob/master/pandas/tseries/frequencies.py#L649
Sorry, something went wrong.
fixes (I think just #7317) reverted, so this needs to be addressed again
@sinhrks
sorry...this is ok, its the Datetime.insert issue
Datetime.insert
Successfully merging a pull request may close this issue.
Found during #7299.
The text was updated successfully, but these errors were encountered: