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.
1 parent 149b9c4 commit 6c8b76aCopy full SHA for 6c8b76a
pandas/core/indexes/datetimes.py
@@ -2,7 +2,10 @@
2
3
import datetime as dt
4
import operator
5
-from typing import TYPE_CHECKING
+from typing import (
6
+ TYPE_CHECKING,
7
+ Self,
8
+)
9
import warnings
10
11
import numpy as np
@@ -55,7 +58,6 @@
55
58
DtypeObj,
56
59
Frequency,
57
60
IntervalClosedType,
- Self,
61
TimeAmbiguous,
62
TimeNonexistent,
63
npt,
@@ -220,6 +222,7 @@ class DatetimeIndex(DatetimeTimedeltaMixin):
220
222
to_pydatetime
221
223
to_series
224
to_frame
225
+ to_julian_date
226
month_name
227
day_name
228
mean
0 commit comments