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/v0.24.0.rst
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ New features
31
31
- :func:`read_feather` now accepts ``columns`` as an argument, allowing the user to specify which columns should be read. (:issue:`24025`)
32
32
- :func:`DataFrame.to_html` now accepts ``render_links`` as an argument, allowing the user to generate HTML with links to any URLs that appear in the DataFrame.
33
33
See the :ref:`section on writing HTML <io.html>` in the IO docs for example usage. (:issue:`2679`)
34
+
- :func:`pandas.read_csv` now supports ``EA`` types as an argument to ``dtype``,
35
+
allowing the user to use ``EA`` types when reading CSVs. (:issue:`23228`)
34
36
35
37
.. _whatsnew_0240.values_api:
36
38
@@ -882,8 +884,8 @@ The affected cases are:
882
884
ValueError: Unable to coerce to DataFrame, shape must be (3, 2): given (1, 2)
883
885
884
886
In [7]: df == (1, 2)
885
-
...: # length matches number of columns;
886
-
...: # comparison previously raised where arithmetic would broadcast
887
+
...: # length matches number of columns;
888
+
...: # comparison previously raised where arithmetic would broadcast
887
889
...
888
890
ValueError: Invalid broadcasting comparison [(1, 2)] with block values
0 commit comments