File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
319
319
-i " pandas.Timestamp.ctime SA01" \
320
320
-i " pandas.Timestamp.date SA01" \
321
321
-i " pandas.Timestamp.day GL08" \
322
- -i " pandas.Timestamp.day_name SA01" \
323
322
-i " pandas.Timestamp.day_of_week SA01" \
324
323
-i " pandas.Timestamp.day_of_year SA01" \
325
324
-i " pandas.Timestamp.dayofweek SA01" \
Original file line number Diff line number Diff line change @@ -498,6 +498,11 @@ class NaTType(_NaT):
498
498
-------
499
499
str
500
500
501
+ See Also
502
+ --------
503
+ Timestamp.day_of_week : Return day of the week.
504
+ Timestamp.day_of_year : Return day of the year.
505
+
501
506
Examples
502
507
--------
503
508
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651')
Original file line number Diff line number Diff line change @@ -771,6 +771,11 @@ cdef class _Timestamp(ABCTimestamp):
771
771
-------
772
772
str
773
773
774
+ See Also
775
+ --------
776
+ Timestamp.day_of_week : Return day of the week.
777
+ Timestamp.day_of_year : Return day of the year.
778
+
774
779
Examples
775
780
--------
776
781
>>> ts = pd.Timestamp(' 2020-03-14T15:32:52.192548651' )
You can’t perform that action at this time.
0 commit comments