We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff5192 commit 2bcd313Copy full SHA for 2bcd313
pandas/io/parsers/readers.py
@@ -270,6 +270,11 @@
270
Encoding to use for UTF when reading/writing (ex. 'utf-8'). `List of Python
271
standard encodings
272
<https://docs.python.org/3/library/codecs.html#standard-encodings>`_ .
273
+ .. versionchanged:: 1.2
274
+
275
+ When ``encoding`` is ``None``, ``errors="replace"`` is passed to
276
+ ``open()``. Otherwise, ``errors="strict"`` is passed to ``open()``.
277
+ This behavior was previously only the case for ``engine="python"``.
278
dialect : str or csv.Dialect, optional
279
If provided, this parameter will override values (default or not) for the
280
following parameters: `delimiter`, `doublequote`, `escapechar`,
0 commit comments