@@ -570,7 +570,7 @@ def dtype(self) -> np.dtype | DatetimeTZDtype: # type: ignore[override]
570570 @property
571571 def tz (self ) -> tzinfo | None :
572572 """
573- Return timezone, if any .
573+ Return the timezone .
574574
575575 Returns
576576 -------
@@ -1278,7 +1278,9 @@ def day_name(self, locale=None):
12781278 @property
12791279 def time (self ) -> npt .NDArray [np .object_ ]:
12801280 """
1281- Returns numpy array of datetime.time. The time part of the Timestamps.
1281+ Returns numpy array of :class:`datetime.time` objects.
1282+
1283+ The time part of the Timestamps.
12821284 """
12831285 # If the Timestamps have a timezone that is not UTC,
12841286 # convert them into their i8 representation while
@@ -1290,16 +1292,20 @@ def time(self) -> npt.NDArray[np.object_]:
12901292 @property
12911293 def timetz (self ) -> npt .NDArray [np .object_ ]:
12921294 """
1293- Returns numpy array of datetime.time also containing timezone
1294- information. The time part of the Timestamps.
1295+ Returns numpy array of :class:`datetime.time` objects with timezone
1296+ information.
1297+
1298+ The time part of the Timestamps.
12951299 """
12961300 return ints_to_pydatetime (self .asi8 , self .tz , box = "time" )
12971301
12981302 @property
12991303 def date (self ) -> npt .NDArray [np .object_ ]:
13001304 """
1301- Returns numpy array of python datetime.date objects (namely, the date
1302- part of Timestamps without timezone information).
1305+ Returns numpy array of python :class:`datetime.date` objects.
1306+
1307+ Namely, the date part of Timestamps without time and
1308+ timezone information.
13031309 """
13041310 # If the Timestamps have a timezone that is not UTC,
13051311 # convert them into their i8 representation while
0 commit comments