Skip to content

Commit bed98bd

Browse files
committed
Update whatsnew
1 parent 2c82333 commit bed98bd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/source/whatsnew/v0.24.0.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ New features
3131
- :func:`read_feather` now accepts ``columns`` as an argument, allowing the user to specify which columns should be read. (:issue:`24025`)
3232
- :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.
3333
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`)
3436

3537
.. _whatsnew_0240.values_api:
3638

@@ -882,8 +884,8 @@ The affected cases are:
882884
ValueError: Unable to coerce to DataFrame, shape must be (3, 2): given (1, 2)
883885
884886
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
887889
...
888890
ValueError: Invalid broadcasting comparison [(1, 2)] with block values
889891
In [8]: df + (1, 2)

0 commit comments

Comments
 (0)