|
308 | 308 | ``open()``. Otherwise, ``errors="strict"`` is passed to ``open()``.
|
309 | 309 | This behavior was previously only the case for ``engine="python"``.
|
310 | 310 |
|
311 |
| - .. versionchanged:: 1.3 |
| 311 | + .. versionchanged:: 1.3.0 |
312 | 312 |
|
313 | 313 | ``encoding_errors`` is a new argument. ``encoding`` has no longer an
|
314 | 314 | influence on how encoding errors are handled.
|
|
317 | 317 | How encoding errors are treated. `List of possible values
|
318 | 318 | <https://docs.python.org/3/library/codecs.html#error-handlers>`_ .
|
319 | 319 |
|
320 |
| - .. versionadded:: 1.3 |
| 320 | + .. versionadded:: 1.3.0 |
321 | 321 |
|
322 | 322 | dialect : str or csv.Dialect, optional
|
323 | 323 | If provided, this parameter will override values (default or not) for the
|
|
331 | 331 | If False, then these "bad lines" will be dropped from the DataFrame that is
|
332 | 332 | returned.
|
333 | 333 |
|
334 |
| - .. deprecated:: 1.3 |
| 334 | + .. deprecated:: 1.3.0 |
335 | 335 | The ``on_bad_lines`` parameter should be used instead to specify behavior upon
|
336 | 336 | encountering a bad line instead.
|
337 | 337 | warn_bad_lines : bool, default ``None``
|
338 | 338 | If error_bad_lines is False, and warn_bad_lines is True, a warning for each
|
339 | 339 | "bad line" will be output.
|
340 | 340 |
|
341 |
| - .. deprecated:: 1.3 |
| 341 | + .. deprecated:: 1.3.0 |
342 | 342 | The ``on_bad_lines`` parameter should be used instead to specify behavior upon
|
343 | 343 | encountering a bad line instead.
|
344 | 344 | on_bad_lines : {{'error', 'warn', 'skip'}}, default 'error'
|
|
349 | 349 | - 'warn', raise a warning when a bad line is encountered and skip that line.
|
350 | 350 | - 'skip', skip bad lines without raising or warning when they are encountered.
|
351 | 351 |
|
352 |
| - .. versionadded:: 1.3 |
| 352 | + .. versionadded:: 1.3.0 |
353 | 353 |
|
354 | 354 | delim_whitespace : bool, default False
|
355 | 355 | Specifies whether or not whitespace (e.g. ``' '`` or ``'\t'``) will be
|
|
0 commit comments