We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf4012 commit 4f271f0Copy full SHA for 4f271f0
pandas/io/parsers.py
@@ -325,6 +325,11 @@
325
Encoding to use for UTF when reading/writing (ex. 'utf-8'). `List of Python
326
standard encodings
327
<https://docs.python.org/3/library/codecs.html#standard-encodings>`_ .
328
+ .. versionchanged:: 1.2
329
+
330
+ When ``encoding`` is ``None``, ``errors="replace"`` is passed to
331
+ ``open()``. Otherwise, ``errors="strict"`` is passed to ``open()``.
332
+ This behavior was previously only the case for ``engine="python"``.
333
dialect : str or csv.Dialect, optional
334
If provided, this parameter will override values (default or not) for the
335
following parameters: `delimiter`, `doublequote`, `escapechar`,
0 commit comments