Skip to content

Commit b4da38b

Browse files
CI: doctest failure for read_hdf on 1.1.x (fixed in pandas-dev#35214 on master)
1 parent d9fff27 commit b4da38b

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
@@ -312,6 +312,10 @@ def read_hdf(
312312
mode : {'r', 'r+', 'a'}, default 'r'
313313
Mode to use when opening the file. Ignored if path_or_buf is a
314314
:class:`pandas.HDFStore`. Default is 'r'.
315+
errors : str, default 'strict'
316+
Specifies how encoding and decoding errors are to be handled.
317+
See the errors argument for :func:`open` for a full list
318+
of options.
315319
where : list, optional
316320
A list of Term (or convertible) objects.
317321
start : int, optional
@@ -324,10 +328,6 @@ def read_hdf(
324328
Return an iterator object.
325329
chunksize : int, optional
326330
Number of rows to include in an iteration when using an iterator.
327-
errors : str, default 'strict'
328-
Specifies how encoding and decoding errors are to be handled.
329-
See the errors argument for :func:`open` for a full list
330-
of options.
331331
**kwargs
332332
Additional keyword arguments passed to HDFStore.
333333

0 commit comments

Comments
 (0)