Skip to content

Commit 83a1a93

Browse files
Merge pull request #8605 from jorisvandenbossche/doc-read_html
DOC: read_html docstring update link to read_csv and infer_types mention
2 parents 7d5389c + a5bfd63 commit 83a1a93

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pandas/io/html.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -786,10 +786,7 @@ def read_html(io, match='.+', flavor=None, header=None, index_col=None,
786786
latest information on table attributes for the modern web.
787787
788788
parse_dates : bool, optional
789-
See :func:`~pandas.io.parsers.read_csv` for more details. In 0.13, this
790-
parameter can sometimes interact strangely with ``infer_types``. If you
791-
get a large number of ``NaT`` values in your results, consider passing
792-
``infer_types=False`` and manually converting types afterwards.
789+
See :func:`~pandas.read_csv` for more details.
793790
794791
tupleize_cols : bool, optional
795792
If ``False`` try to parse multiple header rows into a
@@ -837,7 +834,7 @@ def read_html(io, match='.+', flavor=None, header=None, index_col=None,
837834
838835
See Also
839836
--------
840-
pandas.io.parsers.read_csv
837+
pandas.read_csv
841838
"""
842839
if infer_types is not None:
843840
warnings.warn("infer_types has no effect since 0.15", FutureWarning)

0 commit comments

Comments
 (0)