|
338 | 338 | option can improve performance because there is no longer any I/O overhead. |
339 | 339 | float_precision : str, optional |
340 | 340 | Specifies which converter the C engine should use for floating-point |
341 | | - values. The options are `None` or `high` for the ordinary converter, |
342 | | - `legacy` for the original lower precision pandas converter, and |
343 | | - `round_trip` for the round-trip converter. |
| 341 | + values. The options are ``None`` or 'high' for the ordinary converter, |
| 342 | + 'legacy' for the original lower precision pandas converter, and |
| 343 | + 'round_trip' for the round-trip converter. |
| 344 | +
|
| 345 | + .. versionchanged:: 1.2 |
| 346 | +
|
344 | 347 | storage_options : dict, optional |
345 | 348 | Extra options that make sense for a particular storage connection, e.g. |
346 | 349 | host, port, username, password, etc., if using a URL that will |
|
349 | 352 | a file-like buffer. See the fsspec and backend storage implementation |
350 | 353 | docs for the set of allowed keys and values. |
351 | 354 |
|
352 | | - .. versionadded:: 1.2.0 |
| 355 | + .. versionadded:: 1.2 |
353 | 356 |
|
354 | 357 | Returns |
355 | 358 | ------- |
@@ -2290,9 +2293,10 @@ def TextParser(*args, **kwds): |
2290 | 2293 | can be inferred, there often will be a large parsing speed-up. |
2291 | 2294 | float_precision : str, optional |
2292 | 2295 | Specifies which converter the C engine should use for floating-point |
2293 | | - values. The options are None for the ordinary converter, |
2294 | | - 'high' for the high-precision converter, and 'round_trip' for the |
2295 | | - round-trip converter. |
| 2296 | + values. The options are `None` or `high` for the ordinary converter, |
| 2297 | + `legacy` for the original lower precision pandas converter, and |
| 2298 | + `round_trip` for the round-trip converter. |
| 2299 | +
|
2296 | 2300 | .. versionchanged:: 1.2 |
2297 | 2301 | """ |
2298 | 2302 | kwds["engine"] = "python" |
|
0 commit comments