Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions pandas/io/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@
`legacy` for the original lower precision pandas converter, and
`round_trip` for the round-trip converter.

.. versionchanged:: 1.2

Returns
-------
DataFrame or TextParser
Expand Down Expand Up @@ -2281,9 +2283,10 @@ def TextParser(*args, **kwds):
can be inferred, there often will be a large parsing speed-up.
float_precision : str, optional
Specifies which converter the C engine should use for floating-point
values. The options are None for the ordinary converter,
'high' for the high-precision converter, and 'round_trip' for the
round-trip converter.
values. The options are `None` or `high` for the ordinary converter,
`legacy` for the original lower precision pandas converter, and
`round_trip` for the round-trip converter.

.. versionchanged:: 1.2
"""
kwds["engine"] = "python"
Expand Down