File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
160160 -i " pandas.errors.CSSWarning SA01" \
161161 -i " pandas.errors.CategoricalConversionWarning SA01" \
162162 -i " pandas.errors.ChainedAssignmentError SA01" \
163- -i " pandas.errors.ClosedFileError SA01" \
164163 -i " pandas.errors.DataError SA01" \
165164 -i " pandas.errors.DuplicateLabelError SA01" \
166165 -i " pandas.errors.IntCastingNaNError SA01" \
Original file line number Diff line number Diff line change @@ -615,6 +615,16 @@ class ClosedFileError(Exception):
615615 """
616616 Exception is raised when trying to perform an operation on a closed HDFStore file.
617617
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+
618628 Examples
619629 --------
620630 >>> store = pd.HDFStore("my-store", "a") # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments