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 2fa4bb0 commit 7e6d8eaCopy full SHA for 7e6d8ea
pandas/core/dtypes/dtypes.py
@@ -541,6 +541,17 @@ def tz(self):
541
"""The timezone."""
542
return self._tz
543
544
+ @classmethod
545
+ def construct_array_type(cls):
546
+ """Return the array type associated with this dtype
547
+
548
+ Returns
549
+ -------
550
+ type
551
+ """
552
+ from pandas import DatetimeIndex
553
+ return DatetimeIndex
554
555
@classmethod
556
def construct_from_string(cls, string):
557
"""
0 commit comments