Skip to content

Commit c509781

Browse files
jrebackTomAugspurger
authored andcommitted
DOC: whatsnew 0.20.2 edits (#16587)
(cherry picked from commit 31e67d5)
1 parent ced53d3 commit c509781

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

doc/source/whatsnew/v0.20.2.txt

+16-16
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.
@@ -45,35 +45,35 @@ Bug Fixes
4545
- Silenced a warning on some Windows environments about "tput: terminal attributes: No such device or address" when
4646
detecting the terminal size. This fix only applies to python 3 (:issue:`16496`)
4747
- Bug in using ``pathlib.Path`` or ``py.path.local`` objects with io functions (:issue:`16291`)
48-
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a TypeError (:issue `13490`)
48+
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a ``TypeError`` (:issue `13490`)
4949
- Bug in ``DataFrame.update()`` with ``overwrite=False`` and ``NaN values`` (:issue:`15593`)
5050
- Passing an invalid engine to :func:`read_csv` now raises an informative
5151
``ValueError`` rather than ``UnboundLocalError``. (:issue:`16511`)
5252
- Bug in :func:`unique` on an array of tuples (:issue:`16519`)
53-
- Bug in :func:`cut`` when ``labels`` are set, resulting in incorrect label ordering (:issue:`16459`)
54-
- Fixed a compatibility issue with IPython 6.0's tab completion showing deprecation warnings on Categoricals (:issue:`16409`)
53+
- Bug in :func:`cut` when ``labels`` are set, resulting in incorrect label ordering (:issue:`16459`)
54+
- Fixed a compatibility issue with IPython 6.0's tab completion showing deprecation warnings on ``Categoricals`` (:issue:`16409`)
5555

5656
Conversion
5757
^^^^^^^^^^
5858

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

6262

6363
Indexing
6464
^^^^^^^^
6565

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

7070
I/O
7171
^^^
7272

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

7979
- Bug in ``HDFStore.select_as_multiple()`` where start/stop arguments were not respected (:issue:`16209`)
@@ -91,28 +91,28 @@ Plotting
9191
Groupby/Resample/Rolling
9292
^^^^^^^^^^^^^^^^^^^^^^^^
9393

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

9898

9999
Sparse
100100
^^^^^^
101101

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

104104
Reshaping
105105
^^^^^^^^^
106106

107-
- Bug in ``DataFrame.stack`` with unsorted levels in MultiIndex columns (:issue:`16323`)
107+
- Bug in ``DataFrame.stack`` with unsorted levels in ``MultiIndex`` columns (:issue:`16323`)
108108
- Bug in ``pd.wide_to_long()`` where no error was raised when ``i`` was not a unique identifier (:issue:`16382`)
109109
- Bug in ``Series.isin(..)`` with a list of tuples (:issue:`16394`)
110110
- Bug in construction of a ``DataFrame`` with mixed dtypes including an all-NaT column. (:issue:`16395`)
111111
- Bug in ``DataFrame.agg()`` and ``Series.agg()`` with aggregating on non-callable attributes (:issue:`16405`)
112112

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

117117
Categorical
118118
^^^^^^^^^^^
@@ -122,4 +122,4 @@ Categorical
122122
Other
123123
^^^^^
124124

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

0 commit comments

Comments
 (0)