File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
281
281
-i " pandas.TimedeltaIndex.nanoseconds SA01" \
282
282
-i " pandas.TimedeltaIndex.seconds SA01" \
283
283
-i " pandas.TimedeltaIndex.to_pytimedelta RT03,SA01" \
284
- -i " pandas.Timestamp.as_unit SA01" \
285
284
-i " pandas.Timestamp.asm8 SA01" \
286
285
-i " pandas.Timestamp.astimezone SA01" \
287
286
-i " pandas.Timestamp.ceil SA01" \
Original file line number Diff line number Diff line change @@ -1383,6 +1383,14 @@ default 'raise'
1383
1383
-------
1384
1384
Timestamp
1385
1385
1386
+ See Also
1387
+ --------
1388
+ Timestamp.asm8 : Return numpy datetime64 format in nanoseconds.
1389
+ Timestamp.to_pydatetime : Convert Timestamp object to a native
1390
+ Python datetime object.
1391
+ to_timedelta : Convert argument into timedelta object ,
1392
+ which can represent differences in times.
1393
+
1386
1394
Examples
1387
1395
--------
1388
1396
>>> ts = pd.Timestamp(' 2023-01-01 00:00:00.01' )
Original file line number Diff line number Diff line change @@ -1115,6 +1115,14 @@ cdef class _Timestamp(ABCTimestamp):
1115
1115
-------
1116
1116
Timestamp
1117
1117
1118
+ See Also
1119
+ --------
1120
+ Timestamp.asm8 : Return numpy datetime64 format in nanoseconds.
1121
+ Timestamp.to_pydatetime : Convert Timestamp object to a native
1122
+ Python datetime object.
1123
+ to_timedelta : Convert argument into timedelta object,
1124
+ which can represent differences in times.
1125
+
1118
1126
Examples
1119
1127
--------
1120
1128
>>> ts = pd.Timestamp('2023-01-01 00:00:00.01')
You can’t perform that action at this time.
0 commit comments