File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
256
256
-i " pandas.Timestamp.fromordinal SA01" \
257
257
-i " pandas.Timestamp.fromtimestamp PR01,SA01" \
258
258
-i " pandas.Timestamp.hour GL08" \
259
- -i " pandas.Timestamp.isocalendar SA01" \
260
259
-i " pandas.Timestamp.isoweekday SA01" \
261
260
-i " pandas.Timestamp.max PR02" \
262
261
-i " pandas.Timestamp.microsecond GL08" \
Original file line number Diff line number Diff line change @@ -528,6 +528,12 @@ class NaTType(_NaT):
528
528
"""
529
529
Return a named tuple containing ISO year, week number, and weekday.
530
530
531
+ See Also
532
+ --------
533
+ DatetimeIndex.isocalendar : Return a 3-tuple containing ISO year,
534
+ week number, and weekday for the given DatetimeIndex object.
535
+ datetime.date.isocalendar : The equivalent method for `datetime.date` objects.
536
+
531
537
Examples
532
538
--------
533
539
>>> ts = pd.Timestamp('2023-01-01 10:00:00')
Original file line number Diff line number Diff line change @@ -1691,6 +1691,12 @@ class Timestamp(_Timestamp):
1691
1691
"""
1692
1692
Return a named tuple containing ISO year, week number, and weekday.
1693
1693
1694
+ See Also
1695
+ --------
1696
+ DatetimeIndex.isocalendar : Return a 3-tuple containing ISO year,
1697
+ week number, and weekday for the given DatetimeIndex object.
1698
+ datetime.date.isocalendar : The equivalent method for `datetime.date` objects.
1699
+
1694
1700
Examples
1695
1701
--------
1696
1702
>>> ts = pd.Timestamp('2023-01-01 10:00:00')
You can’t perform that action at this time.
0 commit comments