You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.0.0.rst
+2
Original file line number
Diff line number
Diff line change
@@ -270,6 +270,7 @@ Other enhancements
270
270
- :func:`to_datetime` now accepts ``"mixed"`` as an argument to ``format``, which will infer the format for each element individually (:issue:`50972`)
271
271
- Added new argument ``engine`` to :func:`read_json` to support parsing JSON with pyarrow by specifying ``engine="pyarrow"`` (:issue:`48893`)
272
272
- Added support for SQLAlchemy 2.0 (:issue:`40686`)
273
+
- Added support for ``decimal`` parameter when ``engine="pyarrow"`` in :func:`read_csv` (:issue:`51302`)
273
274
- :class:`Index` set operations :meth:`Index.union`, :meth:`Index.intersection`, :meth:`Index.difference`, and :meth:`Index.symmetric_difference` now support ``sort=True``, which will always return a sorted result, unlike the default ``sort=None`` which does not sort in some cases (:issue:`25151`)
274
275
- Added new escape mode "latex-math" to avoid escaping "$" in formatter (:issue:`50040`)
275
276
@@ -1287,6 +1288,7 @@ I/O
1287
1288
- Bug in :meth:`DataFrame.to_json` where it would segfault when failing to encode a string (:issue:`50307`)
1288
1289
- Bug in :meth:`DataFrame.to_html` with ``na_rep`` set when the :class:`DataFrame` contains non-scalar data (:issue:`47103`)
1289
1290
- Bug in :func:`read_xml` where file-like objects failed when iterparse is used (:issue:`50641`)
1291
+
- Bug in :func:`read_csv` when ``engine="pyarrow"`` where ``encoding`` parameter was not handled correctly (:issue:`51302`)
1290
1292
- Bug in :func:`read_xml` ignored repeated elements when iterparse is used (:issue:`51183`)
1291
1293
- Bug in :class:`ExcelWriter` leaving file handles open if an exception occurred during instantiation (:issue:`51443`)
0 commit comments