@@ -167,6 +167,8 @@ Improvements to existing features
167
167
- Improve support for converting R datasets to pandas objects (more
168
168
informative index for timeseries and numeric, support for factors, dist, and
169
169
high-dimensional arrays).
170
+ - :func: `~pandas.read_html ` now supports the ``parse_dates ``,
171
+ ``tupleize_cols `` and ``thousands `` parameters (:issue: `4770 `).
170
172
171
173
API Changes
172
174
~~~~~~~~~~~
@@ -373,6 +375,8 @@ See :ref:`Internal Refactoring<whatsnew_0130.refactoring>`
373
375
``core/generic.py `` (:issue: `4435 `).
374
376
- Refactor cum objects to core/generic.py (:issue: `4435 `), note that these have a more numpy-like
375
377
function signature.
378
+ - :func: `~pandas.read_html ` now uses ``TextParser `` to parse HTML data from
379
+ bs4/lxml (:issue: `4770 `).
376
380
377
381
.. _release.bug_fixes-0.13.0 :
378
382
@@ -538,6 +542,15 @@ Bug Fixes
538
542
- Make sure series-series boolean comparions are label based (:issue: `4947 `)
539
543
- Bug in multi-level indexing with a Timestamp partial indexer (:issue: `4294 `)
540
544
- Tests/fix for multi-index construction of an all-nan frame (:isue: `4078 `)
545
+ - Fixed a bug where :func: `~pandas.read_html ` wasn't correctly inferring
546
+ values of tables with commas (:issue: `5029 `)
547
+ - Fixed a bug where :func: `~pandas.read_html ` wasn't providing a stable
548
+ ordering of returned tables (:issue: `4770 `, :issue: `5029 `).
549
+ - Fixed a bug where :func: `~pandas.read_html ` was incorrectly parsing when
550
+ passed ``index_col=0 `` (:issue: `5066 `).
551
+ - Fixed a bug where :func: `~pandas.read_html ` was incorrectly infering the
552
+ type of headers (:issue: `5048 `).
553
+
541
554
542
555
pandas 0.12.0
543
556
-------------
0 commit comments