File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
159
159
-i " pandas.errors.CSSWarning SA01" \
160
160
-i " pandas.errors.CategoricalConversionWarning SA01" \
161
161
-i " pandas.errors.ChainedAssignmentError SA01" \
162
- -i " pandas.errors.ClosedFileError SA01" \
163
162
-i " pandas.errors.DataError SA01" \
164
163
-i " pandas.errors.DuplicateLabelError SA01" \
165
164
-i " pandas.errors.IntCastingNaNError SA01" \
Original file line number Diff line number Diff line change @@ -615,6 +615,16 @@ class ClosedFileError(Exception):
615
615
"""
616
616
Exception is raised when trying to perform an operation on a closed HDFStore file.
617
617
618
+ ``ClosedFileError`` is specific to operations on ``HDFStore`` objects. Once an
619
+ HDFStore is closed, its resources are no longer available, and any further attempt
620
+ to access data or perform file operations will raise this exception.
621
+
622
+ See Also
623
+ --------
624
+ HDFStore.close : Closes the PyTables file handle.
625
+ HDFStore.open : Opens the file in the specified mode.
626
+ HDFStore.is_open : Returns a boolean indicating whether the file is open.
627
+
618
628
Examples
619
629
--------
620
630
>>> store = pd.HDFStore("my-store", "a") # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments