From 5bb8243d6b7aa206c3768a5f34caab8bb91a6ee7 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 1 Jun 2022 13:24:34 -0700 Subject: [PATCH] updated daysinmonth definition to match days_in_month --- pandas/_libs/tslibs/period.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_libs/tslibs/period.pyx b/pandas/_libs/tslibs/period.pyx index de44f0da8275e..73b88b4b147f8 100644 --- a/pandas/_libs/tslibs/period.pyx +++ b/pandas/_libs/tslibs/period.pyx @@ -2253,7 +2253,7 @@ cdef class _Period(PeriodMixin): @property def daysinmonth(self) -> int: """ - Get the total number of days of the month that the Period falls in. + Get the total number of days of the month that this period falls on. Returns -------