File tree 3 files changed +2
-4
lines changed
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -576,7 +576,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
576
576
$BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=EX02 --ignore_functions \
577
577
pandas.DataFrame.plot.line \
578
578
pandas.Series.plot.line \
579
- pandas.Timestamp.fromtimestamp \
580
579
pandas.api.types.infer_dtype \
581
580
pandas.api.types.is_datetime64_any_dtype \
582
581
pandas.api.types.is_datetime64_ns_dtype \
@@ -590,7 +589,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
590
589
pandas.api.types.is_timedelta64_dtype \
591
590
pandas.api.types.is_timedelta64_ns_dtype \
592
591
pandas.api.types.is_unsigned_integer_dtype \
593
- pandas.core.groupby.DataFrameGroupBy.take \
594
592
pandas.io.formats.style.Styler.concat \
595
593
pandas.io.formats.style.Styler.export \
596
594
pandas.io.formats.style.Styler.set_td_classes \
Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ class NaTType(_NaT):
570
570
571
571
Examples
572
572
--------
573
- >>> pd.Timestamp.fromtimestamp(1584199972)
573
+ >>> pd.Timestamp.fromtimestamp(1584199972) # doctest: +SKIP
574
574
Timestamp('2020-03-14 15:32:52')
575
575
576
576
Note that the output may change depending on your local time.
Original file line number Diff line number Diff line change @@ -1451,7 +1451,7 @@ class Timestamp(_Timestamp):
1451
1451
1452
1452
Examples
1453
1453
--------
1454
- >>> pd.Timestamp.fromtimestamp(1584199972)
1454
+ >>> pd.Timestamp.fromtimestamp(1584199972) # doctest: +SKIP
1455
1455
Timestamp('2020-03-14 15:32:52')
1456
1456
1457
1457
Note that the output may change depending on your local time.
You can’t perform that action at this time.
0 commit comments