Skip to content

Commit 08b7240

Browse files
committed
DOC: release notes/v0.11.1 updates
1 parent a8723a4 commit 08b7240

File tree

2 files changed

+6
-22
lines changed

2 files changed

+6
-22
lines changed

RELEASE.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pandas 0.11.1
3030

3131
**New features**
3232

33-
- ``pandas.read_html()`` can now parse HTML strings, files or urls and
33+
- ``pd.read_html()`` can now parse HTML strings, files or urls and
3434
returns a list of ``DataFrame`` s courtesy of @cpcloud. (GH3477_, GH3605_,
3535
GH3606_)
3636
- Support for reading Amazon S3 files. (GH3504_)
@@ -91,7 +91,6 @@ pandas 0.11.1
9191
- Fixed an esoteric excel reading bug, xlrd>= 0.9.0 now required for excel
9292
support. Should provide python3 support (for reading) which has been
9393
lacking. (GH3164_)
94-
- Addressed handling of dupe columns in df.to_csv new and old (GH3454_, GH3457_)
9594
- Allow unioning of date ranges sharing a timezone (GH3491_)
9695
- Fix to_csv issue when having a large number of rows and ``NaT`` in some
9796
columns (GH3437_)
@@ -104,6 +103,7 @@ pandas 0.11.1
104103
- Fix issue when storing uint dtypes in an HDFStore. (GH3493_)
105104
- Non-unique index support clarified (GH3468_)
106105

106+
- Addressed handling of dupe columns in df.to_csv new and old (GH3454_, GH3457_)
107107
- Fix assigning a new index to a duplicate index in a DataFrame would fail (GH3468_)
108108
- Fix construction of a DataFrame with a duplicate index
109109
- ref_locs support to allow duplicative indices across dtypes,

doc/source/v0.11.1.txt

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -64,27 +64,11 @@ API changes
6464

6565
Enhancements
6666
~~~~~~~~~~~~
67+
6768
- ``pd.read_html()`` can now parse HTML strings, files or urls and return
68-
DataFrames
69-
courtesy of @cpcloud. (GH3477_, GH3605_, GH3606_)
70-
- ``read_html()`` (GH3616_)
71-
- now works with only a *single* parser backend, that is:
72-
- BeautifulSoup4 + html5lib
73-
- does *not* and will never support using the html parsing library
74-
included with Python as a parser backend
75-
- is a bit smarter about the parent table elements of matched text: if
76-
multiple matches are found then only the *unique* parents of the result
77-
are returned (uniqueness is determined using ``set``).
78-
- no longer tries to guess about what you want to do with empty table cells
79-
- argument ``infer_types`` now defaults to ``False``.
80-
- now returns DataFrames whose default column index is the elements of
81-
``<thead>`` elements in the HTML soup, if any exist.
82-
- considers all ``<th>`` and ``<td>`` elements inside of ``<thead>``
83-
elements.
84-
- tests are now correctly skipped if the proper libraries are not
85-
installed.
86-
- tests now include a ground-truth csv file from the FDIC failed bank list
87-
data set.
69+
DataFrames, courtesy of @cpcloud. (GH3477_, GH3605_, GH3606_, GH3616_).
70+
It works with a *single* parser backend: BeautifulSoup4 + html5lib
71+
8872
- ``HDFStore``
8973

9074
- will retain index attributes (freq,tz,name) on recreation (GH3499_)

0 commit comments

Comments
 (0)