We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ab5c79 commit 1762610Copy full SHA for 1762610
pandas/_libs/tslibs/timestamps.pyi
@@ -199,10 +199,14 @@ class Timestamp(datetime):
199
@property
200
def day_of_week(self) -> int: ...
201
202
+ def dayofweek(self) -> int: ...
203
+ @property
204
def day_of_month(self) -> int: ...
205
206
def day_of_year(self) -> int: ...
207
208
+ def dayofyear(self) -> int: ...
209
210
def quarter(self) -> int: ...
211
212
def week(self) -> int: ...
@@ -211,3 +215,7 @@ class Timestamp(datetime):
215
) -> np.datetime64: ...
216
213
217
def _date_repr(self) -> str: ...
218
219
+ def days_in_month(self) -> int: ...
220
221
+ def daysinmonth(self) -> int: ...
0 commit comments