8000 DEPR: disallow tznaive datetimes when indexing tzaware datetimeindex by jbrockmendel · Pull Request #36148 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DEPR: disallow tznaive datetimes when indexing tzaware datetimeindex #36148

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 14 commits into from
Oct 7, 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
isort fixup
  • Loading branch information
jbrockmendel committed Sep 5, 2020
commit a4eda0e745381d022d95b7f5b626b1c727976b40
8 changes: 3 additions & 5 deletions pandas/tests/series/indexing/test_datetime.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
Also test support for datetime64[ns] in Series / DataFrame
"""
from datetime import datetime, timedelta
import re

Expand All @@ -12,11 +15,6 @@
import pandas._testing as tm


"""
Also test support for datetime64[ns] in Series / DataFrame
"""


def test_fancy_getitem():
dti = date_range(
freq="WOM-1FRI", start=datetime(2005, 1, 1), end=datetime(2010, 1, 1)
Expand Down
0