File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
117
117
-i " pandas.errors.NumbaUtilError SA01" \
118
118
-i " pandas.errors.OutOfBoundsTimedelta SA01" \
119
119
-i " pandas.errors.PerformanceWarning SA01" \
120
- -i " pandas.errors.PossibleDataLossError SA01" \
121
120
-i " pandas.errors.UndefinedVariableError PR01,SA01" \
122
121
-i " pandas.errors.ValueLabelTypeMismatch SA01" \
123
122
-i " pandas.infer_freq SA01" \
Original file line number Diff line number Diff line change @@ -638,6 +638,15 @@ class PossibleDataLossError(Exception):
638
638
"""
639
639
Exception raised when trying to open a HDFStore file when already opened.
640
640
641
+ This error is triggered when there is a potential risk of data loss due to
642
+ conflicting operations on an HDFStore file. It serves to prevent unintended
643
+ overwrites or data corruption by enforcing exclusive access to the file.
644
+
645
+ See Also
646
+ --------
647
+ HDFStore : Dict-like IO interface for storing pandas objects in PyTables.
648
+ HDFStore.open : Open an HDFStore file in the specified mode.
649
+
641
650
Examples
642
651
--------
643
652
>>> store = pd.HDFStore("my-store", "a") # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments