We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
>>> dr = pd.date_range('2016-01-01', periods=6) >>> dz = dr.tz_localize('US/Pacific') >>> dr < dz array([ True, True, True, True, True, True], dtype=bool) >>> dr[0] < dz[0] Traceback (most recent call last): File "<stdin>", line 1, in <module> File "pandas/_libs/tslib.pyx", line 1169, in pandas._libs.tslib._Timestamp.__richcmp__ File "pandas/_libs/tslib.pyx", line 1230, in pandas._libs.tslib._Timestamp._assert_tzawareness_compat TypeError: Cannot compare tz-naive and tz-aware timestamps
The vectorized comparison should raise too right?
The text was updated successfully, but these errors were encountered:
yes this should raise
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The vectorized comparison should raise too right?
The text was updated successfully, but these errors were encountered: