Skip to content

Commit a7147c3

Browse files
jrebackstangirala
authored andcommitted
DOC: whatsnew 0.20.2 edits (pandas-dev#16587)
1 parent 4aebe72 commit a7147c3

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

doc/source/whatsnew/v0.20.2.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _whatsnew_0202:
22

3-
v0.20.2 (???)
4-
-------------
3+
v0.20.2 (June 3, 2017)
4+
----------------------
55

66
This is a minor bug-fix release in the 0.20.x series and includes some small regression fixes,
77
bug fixes and performance improvements.
@@ -47,35 +47,35 @@ Bug Fixes
4747
- Silenced a warning on some Windows environments about "tput: terminal attributes: No such device or address" when
4848
detecting the terminal size. This fix only applies to python 3 (:issue:`16496`)
4949
- Bug in using ``pathlib.Path`` or ``py.path.local`` objects with io functions (:issue:`16291`)
50-
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a TypeError (:issue `13490`)
50+
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a ``TypeError`` (:issue `13490`)
5151
- Bug in ``DataFrame.update()`` with ``overwrite=False`` and ``NaN values`` (:issue:`15593`)
5252
- Passing an invalid engine to :func:`read_csv` now raises an informative
5353
``ValueError`` rather than ``UnboundLocalError``. (:issue:`16511`)
5454
- Bug in :func:`unique` on an array of tuples (:issue:`16519`)
55-
- Bug in :func:`cut`` when ``labels`` are set, resulting in incorrect label ordering (:issue:`16459`)
56-
- Fixed a compatibility issue with IPython 6.0's tab completion showing deprecation warnings on Categoricals (:issue:`16409`)
55+
- Bug in :func:`cut` when ``labels`` are set, resulting in incorrect label ordering (:issue:`16459`)
56+
- Fixed a compatibility issue with IPython 6.0's tab completion showing deprecation warnings on ``Categoricals`` (:issue:`16409`)
5757

5858
Conversion
5959
^^^^^^^^^^
6060

61-
- Bug in ``pd.to_numeric()`` in which empty data inputs were causing Python to crash (:issue:`16302`)
62-
- Silence numpy warnings when broadcasting DataFrame to Series with comparison ops (:issue:`16378`, :issue:`16306`)
61+
- Bug in :func:`to_numeric` in which empty data inputs were causing a segfault of the interpreter (:issue:`16302`)
62+
- Silence numpy warnings when broadcasting ``DataFrame`` to ``Series`` with comparison ops (:issue:`16378`, :issue:`16306`)
6363

6464

6565
Indexing
6666
^^^^^^^^
6767

6868
- Bug in ``DataFrame.reset_index(level=)`` with single level index (:issue:`16263`)
6969
- Bug in partial string indexing with a monotonic, but not strictly-monotonic, index incorrectly reversing the slice bounds (:issue:`16515`)
70-
- Bug in ``MultiIndex.remove_unused_levels()`` (:issue:`16556`)
70+
- Bug in ``MultiIndex.remove_unused_levels()`` that would not return a ``MultiIndex`` equal to the original. (:issue:`16556`)
7171

7272
I/O
7373
^^^
7474

75-
- Bug in pd.read_csv() when comment is passed in space deliminted text files (:issue:`16472`)
75+
- Bug in :func:`read_csv` when ``comment`` is passed in a space delimited text file (:issue:`16472`)
7676
- Bug that would force importing of the clipboard routines unnecessarily, potentially causing an import error on startup (:issue:`16288`)
77-
- Bug that raised IndexError HTML-rendering an empty DataFrame (:issue:`15953`)
78-
- Bug in ``pd.read_csv()`` in which tarfile object inputs were raising an error in Python 2.x for the C engine (:issue:`16530`)
77+
- Bug that raised ``IndexError`` when HTML-rendering an empty ``DataFrame`` (:issue:`15953`)
78+
- Bug in :func:`read_csv` in which tarfile object inputs were raising an error in Python 2.x for the C engine (:issue:`16530`)
7979
- Bug where ``DataFrame.to_html()`` ignored the ``index_names`` parameter (:issue:`16493`)
8080

8181
- Bug in ``HDFStore.select_as_multiple()`` where start/stop arguments were not respected (:issue:`16209`)
@@ -93,20 +93,20 @@ Plotting
9393
Groupby/Resample/Rolling
9494
^^^^^^^^^^^^^^^^^^^^^^^^
9595

96-
- Bug creating datetime rolling window on an empty DataFrame (:issue:`15819`)
96+
- Bug in creating a time-based rolling window on an empty ``DataFrame`` (:issue:`15819`)
9797
- Bug in ``rolling.cov()`` with offset window (:issue:`16058`)
9898
- Bug in ``.resample()`` and ``.groupby()`` when aggregating on integers (:issue:`16361`)
9999

100100

101101
Sparse
102102
^^^^^^
103103

104-
- Bug in construction of SparseDataFrame from ``scipy.sparse.dok_matrix`` (:issue:`16179`)
104+
- Bug in construction of ``SparseDataFrame`` from ``scipy.sparse.dok_matrix`` (:issue:`16179`)
105105

106106
Reshaping
107107
^^^^^^^^^
108108

109-
- Bug in ``DataFrame.stack`` with unsorted levels in MultiIndex columns (:issue:`16323`)
109+
- Bug in ``DataFrame.stack`` with unsorted levels in ``MultiIndex`` columns (:issue:`16323`)
110110
- Bug in ``pd.wide_to_long()`` where no error was raised when ``i`` was not a unique identifier (:issue:`16382`)
111111
- Bug in ``Series.isin(..)`` with a list of tuples (:issue:`16394`)
112112
- Bug in construction of a ``DataFrame`` with mixed dtypes including an all-NaT column. (:issue:`16395`)
@@ -115,7 +115,7 @@ Reshaping
115115

116116
Numeric
117117
^^^^^^^
118-
- Bug in .interpolate(), where limit_direction was not respected when limit=None (default) was passed (:issue:16282)
118+
- Bug in ``.interpolate()``, where ``limit_direction`` was not respected when ``limit=None`` (default) was passed (:issue:`16282`)
119119

120120
Categorical
121121
^^^^^^^^^^^
@@ -125,4 +125,4 @@ Categorical
125125
Other
126126
^^^^^
127127

128-
- Bug in ``pd.drop([])`` for DataFrame with non-unique indices (:issue:`16270`)
128+
- Bug in ``DataFrame.drop()`` with an empty-list with non-unique indices (:issue:`16270`)

0 commit comments

Comments
 (0)