File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
99
99
-i " pandas.Period.month SA01" \
100
100
-i " pandas.Period.now SA01" \
101
101
-i " pandas.Period.ordinal GL08" \
102
- -i " pandas.Period.quarter SA01" \
103
102
-i " pandas.Period.strftime PR01,SA01" \
104
103
-i " pandas.Period.to_timestamp SA01" \
105
104
-i " pandas.Period.year SA01" \
Original file line number Diff line number Diff line change @@ -2329,6 +2329,12 @@ cdef class _Period(PeriodMixin):
2329
2329
"""
2330
2330
Return the quarter this Period falls on.
2331
2331
2332
+ See Also
2333
+ --------
2334
+ Timestamp.quarter : Return the quarter of the Timestamp.
2335
+ Period.year : Return the year of the period.
2336
+ Period.month : Return the month of the period.
2337
+
2332
2338
Examples
2333
2339
--------
2334
2340
>>> period = pd.Period(' 2022-04' , ' M' )
You can’t perform that action at this time.
0 commit comments