File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
Expand file tree Collapse file tree 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
319319 -i " pandas.Timestamp.ctime SA01" \
320320 -i " pandas.Timestamp.date SA01" \
321321 -i " pandas.Timestamp.day GL08" \
322- -i " pandas.Timestamp.day_name SA01" \
323322 -i " pandas.Timestamp.day_of_week SA01" \
324323 -i " pandas.Timestamp.day_of_year SA01" \
325324 -i " pandas.Timestamp.dayofweek SA01" \
Original file line number Diff line number Diff line change @@ -498,6 +498,11 @@ class NaTType(_NaT):
498498 -------
499499 str
500500
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+
501506 Examples
502507 --------
503508 >>> 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):
771771 -------
772772 str
773773
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+
774779 Examples
775780 --------
776781 >>> ts = pd.Timestamp(' 2020-03-14T15:32:52.192548651' )
You can’t perform that action at this time.
0 commit comments