Skip to content

Commit f15a60a

Browse files
CI: doctest failure for read_hdf on 1.1.x (fixed in #35214 on master) (#35718)
1 parent e8a8264 commit f15a60a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/io/pytables.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ def read_hdf(
320320
mode : {'r', 'r+', 'a'}, default 'r'
321321
Mode to use when opening the file. Ignored if path_or_buf is a
322322
:class:`pandas.HDFStore`. Default is 'r'.
323+
errors : str, default 'strict'
324+
Specifies how encoding and decoding errors are to be handled.
325+
See the errors argument for :func:`open` for a full list
326+
of options.
323327
where : list, optional
324328
A list of Term (or convertible) objects.
325329
start : int, optional
@@ -332,10 +336,6 @@ def read_hdf(
332336
Return an iterator object.
333337
chunksize : int, optional
334338
Number of rows to include in an iteration when using an iterator.
335-
errors : str, default 'strict'
336-
Specifies how encoding and decoding errors are to be handled.
337-
See the errors argument for :func:`open` for a full list
338-
of options.
339339
**kwargs
340340
Additional keyword arguments passed to HDFStore.
341341

0 commit comments

Comments
 (0)