MultiIndex with a level that is a tzaware DatetimeIndex.
()
| 675 | |
| 676 | |
| 677 | def _create_mi_with_dt64tz_level(): |
| 678 | """ |
| 679 | MultiIndex with a level that is a tzaware DatetimeIndex. |
| 680 | """ |
| 681 | # GH#8367 round trip with pickle |
| 682 | return MultiIndex.from_product( |
| 683 | [[1, 2], ["a", "b"], date_range("20130101", periods=3, tz="US/Eastern")], |
| 684 | names=["one", "two", "three"], |
| 685 | ) |
| 686 | |
| 687 | |
| 688 | indices_dict = { |
no test coverage detected