Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.NA SA01" \
-i "pandas.Period.freq GL08" \
-i "pandas.Period.ordinal GL08" \
-i "pandas.Period.to_timestamp SA01" \
-i "pandas.PeriodDtype.freq SA01" \
-i "pandas.RangeIndex.from_range PR01,SA01" \
-i "pandas.RangeIndex.start SA01" \
Expand Down
6 changes: 6 additions & 0 deletions pandas/_libs/tslibs/period.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2001,6 +2001,12 @@ cdef class _Period(PeriodMixin):
-------
Timestamp

See Also
--------
Timestamp : A class representing a single point in time.
Period : Represents a span of time with a fixed frequency.
PeriodIndex.to_timestamp : Convert a `PeriodIndex` to a `DatetimeIndex`.

Examples
--------
>>> period = pd.Period('2023-1-1', freq='D')
Expand Down
Loading