@@ -256,14 +256,20 @@ cdef class _Timestamp(ABCTimestamp):
256
256
257
257
This property returns a string representing the time unit of the Timestamp's
258
258
resolution. It corresponds to the smallest time unit that can be represented
259
- by this Timestamp object. The possible values are 's' (second ), 'ms' (millisecond ),
260
- 'us' (microsecond ), and 'ns' (nanosecond ).
259
+ by this Timestamp object. The possible values are:
260
+ - 's' (second )
261
+ - 'ms' (millisecond )
262
+ - 'us' (microsecond )
263
+ - 'ns' (nanosecond )
261
264
262
265
Returns
263
266
-------
264
267
str
265
268
A string abbreviation of the Timestamp's resolution unit:
266
- 's' for second , 'ms' for millisecond , 'us' for microsecond , or 'ns' for nanosecond.
269
+ - 's' for second
270
+ - 'ms' for millisecond
271
+ - 'us' for microsecond
272
+ - 'ns' for nanosecond
267
273
268
274
See Also
269
275
--------
@@ -1798,7 +1804,8 @@ class Timestamp(_Timestamp):
1798
1804
1799
1805
See Also
1800
1806
--------
1801
- datetime.datetime.utcoffset : Standard library method to get the UTC offset of a datetime object.
1807
+ datetime.datetime.utcoffset :
1808
+ Standard library method to get the UTC offset of a datetime object.
1802
1809
Timestamp.tzname : Return the name of the timezone.
1803
1810
Timestamp.dst : Return the daylight saving time (DST) adjustment.
1804
1811
@@ -1828,7 +1835,8 @@ class Timestamp(_Timestamp):
1828
1835
1829
1836
See Also
1830
1837
--------
1831
- datetime.datetime.utctimetuple : Return UTC time tuple, compatible with time.localtime().
1838
+ datetime.datetime.utctimetuple :
1839
+ Return UTC time tuple, compatible with time.localtime().
1832
1840
Timestamp.timetuple : Return time tuple of local time.
1833
1841
time.struct_time : Time tuple structure used by time functions.
1834
1842
0 commit comments