File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
286
286
-i " pandas.Timestamp.utcoffset SA01" \
287
287
-i " pandas.Timestamp.utctimetuple SA01" \
288
288
-i " pandas.Timestamp.value GL08" \
289
- -i " pandas.Timestamp.weekday SA01" \
290
289
-i " pandas.Timestamp.year GL08" \
291
290
-i " pandas.api.extensions.ExtensionArray._hash_pandas_object RT03,SA01" \
292
291
-i " pandas.api.extensions.ExtensionArray._pad_or_backfill PR01,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -419,6 +419,12 @@ class NaTType(_NaT):
419
419
420
420
Monday == 0 ... Sunday == 6.
421
421
422
+ See Also
423
+ --------
424
+ Timestamp.dayofweek : Return the day of the week with Monday=0, Sunday=6.
425
+ Timestamp.isoweekday : Return the day of the week with Monday=1, Sunday=7.
426
+ datetime.date.weekday : Equivalent method in datetime module.
427
+
422
428
Examples
423
429
--------
424
430
>>> ts = pd.Timestamp('2023-01-01')
Original file line number Diff line number Diff line change @@ -2752,6 +2752,12 @@ default 'raise'
2752
2752
2753
2753
Monday == 0 ... Sunday == 6.
2754
2754
2755
+ See Also
2756
+ --------
2757
+ Timestamp.dayofweek : Return the day of the week with Monday=0, Sunday=6.
2758
+ Timestamp.isoweekday : Return the day of the week with Monday=1, Sunday=7.
2759
+ datetime.date.weekday : Equivalent method in datetime module.
2760
+
2755
2761
Examples
2756
2762
--------
2757
2763
>>> ts = pd.Timestamp('2023-01-01')
You can’t perform that action at this time.
0 commit comments