File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
140
140
-i " pandas.errors.OutOfBoundsTimedelta SA01" \
141
141
-i " pandas.errors.PerformanceWarning SA01" \
142
142
-i " pandas.errors.PossibleDataLossError SA01" \
143
- -i " pandas.errors.PossiblePrecisionLoss SA01" \
144
143
-i " pandas.errors.UndefinedVariableError PR01,SA01" \
145
144
-i " pandas.errors.UnsortedIndexError SA01" \
146
145
-i " pandas.errors.UnsupportedFunctionCall SA01" \
Original file line number Diff line number Diff line change @@ -691,6 +691,10 @@ class PossiblePrecisionLoss(Warning):
691
691
When the column value is outside or equal to the int64 value the column is
692
692
converted to a float64 dtype.
693
693
694
+ See Also
695
+ --------
696
+ DataFrame.to_stata : Export DataFrame object to Stata dta format.
697
+
694
698
Examples
695
699
--------
696
700
>>> df = pd.DataFrame({"s": pd.Series([1, 2**53], dtype=np.int64)})
You can’t perform that action at this time.
0 commit comments