Skip to content

Commit d007c2d

Browse files
topper-123jreback
authored andcommitted
cleanup whatsnew files (pandas-dev#21021)
1 parent 46c9656 commit d007c2d

15 files changed

+23
-23
lines changed

doc/source/whatsnew/v0.13.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ Enhancements
651651

652652
Additionally, the ``method`` argument to ``interpolate`` has been expanded
653653
to include ``'nearest', 'zero', 'slinear', 'quadratic', 'cubic',
654-
'barycentric', 'krogh', 'piecewise_polynomial', 'pchip', `polynomial`, 'spline'``
654+
'barycentric', 'krogh', 'piecewise_polynomial', 'pchip', 'polynomial', 'spline'``
655655
The new methods require scipy_. Consult the Scipy reference guide_ and documentation_ for more information
656656
about when the various methods are appropriate. See :ref:`the docs<missing_data.interpolate>`.
657657

doc/source/whatsnew/v0.14.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ Bug Fixes
998998
- Bug in C parser with ``delim_whitespace=True`` and ``\r``-delimited lines
999999
- Bug in python parser with explicit multi-index in row following column header (:issue:`6893`)
10001000
- Bug in ``Series.rank`` and ``DataFrame.rank`` that caused small floats (<1e-13) to all receive the same rank (:issue:`6886`)
1001-
- Bug in ``DataFrame.apply`` with functions that used \*args`` or \*\*kwargs and returned
1001+
- Bug in ``DataFrame.apply`` with functions that used ``*args`` or ``**kwargs`` and returned
10021002
an empty result (:issue:`6952`)
10031003
- Bug in sum/mean on 32-bit platforms on overflows (:issue:`6915`)
10041004
- Moved ``Panel.shift`` to ``NDFrame.slice_shift`` and fixed to respect multiple dtypes. (:issue:`6959`)

doc/source/whatsnew/v0.14.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Bug Fixes
229229
:issue:`7409`).
230230
- Bug where bool objects were converted to ``nan`` in ``convert_objects``
231231
(:issue:`7416`).
232-
- Bug in ``quantile`` ignoring the axis keyword argument (:issue`7306`)
232+
- Bug in ``quantile`` ignoring the axis keyword argument (:issue:`7306`)
233233
- Bug where ``nanops._maybe_null_out`` doesn't work with complex numbers
234234
(:issue:`7353`)
235235
- Bug in several ``nanops`` functions when ``axis==0`` for

doc/source/whatsnew/v0.15.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ Other:
983983

984984
df.describe(include='all')
985985

986-
Without those arguments, 'describe` will behave as before, including only numerical columns or, if none are, only categorical columns. See also the :ref:`docs <basics.describe>`
986+
Without those arguments, ``describe`` will behave as before, including only numerical columns or, if none are, only categorical columns. See also the :ref:`docs <basics.describe>`
987987

988988
- Added ``split`` as an option to the ``orient`` argument in ``pd.DataFrame.to_dict``. (:issue:`7840`)
989989

doc/source/whatsnew/v0.15.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Bug Fixes
287287
- Bug in ``Categorical`` reflected comparison operator raising if the first argument was a numpy array scalar (e.g. np.int64) (:issue:`8658`)
288288
- Bug in Panel indexing with a list-like (:issue:`8710`)
289289
- Compat issue is ``DataFrame.dtypes`` when ``options.mode.use_inf_as_null`` is True (:issue:`8722`)
290-
- Bug in ``read_csv``, ``dialect`` parameter would not take a string (:issue: `8703`)
290+
- Bug in ``read_csv``, ``dialect`` parameter would not take a string (:issue:`8703`)
291291
- Bug in slicing a multi-index level with an empty-list (:issue:`8737`)
292292
- Bug in numeric index operations of add/sub with Float/Index Index with numpy arrays (:issue:`8608`)
293293
- Bug in setitem with empty indexer and unwanted coercion of dtypes (:issue:`8669`)

doc/source/whatsnew/v0.16.2.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,5 @@ Bug Fixes
163163
- Bug in ``Panel.apply`` when the result has ndim=0 (:issue:`10332`)
164164
- Bug in ``read_hdf`` where ``auto_close`` could not be passed (:issue:`9327`).
165165
- Bug in ``read_hdf`` where open stores could not be used (:issue:`10330`).
166-
- Bug in adding empty ``DataFrame``s, now results in a ``DataFrame`` that ``.equals`` an empty ``DataFrame`` (:issue:`10181`).
166+
- Bug in adding empty ``DataFrames``, now results in a ``DataFrame`` that ``.equals`` an empty ``DataFrame`` (:issue:`10181`).
167167
- Bug in ``to_hdf`` and ``HDFStore`` which did not check that complib choices were valid (:issue:`4582`, :issue:`8874`).

doc/source/whatsnew/v0.17.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ Bug Fixes
10431043
~~~~~~~~~
10441044

10451045
- Bug in incorrection computation of ``.mean()`` on ``timedelta64[ns]`` because of overflow (:issue:`9442`)
1046-
- Bug in ``.isin`` on older numpies (:issue: `11232`)
1046+
- Bug in ``.isin`` on older numpies (:issue:`11232`)
10471047
- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
10481048
- Bug in ``DataFrame.to_latex()`` the ``column_format`` argument could not be passed (:issue:`9402`)
10491049
- Bug in ``DatetimeIndex`` when localizing with ``NaT`` (:issue:`10477`)
@@ -1094,7 +1094,7 @@ Bug Fixes
10941094

10951095

10961096
- Bug in ``to_datetime`` and ``to_timedelta`` causing ``Index`` name to be lost (:issue:`10875`)
1097-
- Bug in ``len(DataFrame.groupby)`` causing ``IndexError`` when there's a column containing only NaNs (:issue: `11016`)
1097+
- Bug in ``len(DataFrame.groupby)`` causing ``IndexError`` when there's a column containing only NaNs (:issue:`11016`)
10981098

10991099
- Bug that caused segfault when resampling an empty Series (:issue:`10228`)
11001100
- Bug in ``DatetimeIndex`` and ``PeriodIndex.value_counts`` resets name from its result, but retains in result's ``Index``. (:issue:`10150`)

doc/source/whatsnew/v0.19.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Individual columns can be parsed as a ``Categorical`` using a dict specification
265265
Categorical Concatenation
266266
^^^^^^^^^^^^^^^^^^^^^^^^^
267267

268-
- A function :func:`union_categoricals` has been added for combining categoricals, see :ref:`Unioning Categoricals<categorical.union>` (:issue:`13361`, :issue:`:13763`, issue:`13846`, :issue:`14173`)
268+
- A function :func:`union_categoricals` has been added for combining categoricals, see :ref:`Unioning Categoricals<categorical.union>` (:issue:`13361`, :issue:`13763`, :issue:`13846`, :issue:`14173`)
269269

270270
.. ipython:: python
271271

@@ -1525,7 +1525,7 @@ Bug Fixes
15251525
- Bug in invalid datetime parsing in ``to_datetime`` and ``DatetimeIndex`` may raise ``TypeError`` rather than ``ValueError`` (:issue:`11169`, :issue:`11287`)
15261526
- Bug in ``Index`` created with tz-aware ``Timestamp`` and mismatched ``tz`` option incorrectly coerces timezone (:issue:`13692`)
15271527
- Bug in ``DatetimeIndex`` with nanosecond frequency does not include timestamp specified with ``end`` (:issue:`13672`)
1528-
- Bug in ```Series``` when setting a slice with a ```np.timedelta64``` (:issue:`14155`)
1528+
- Bug in ```Series`` when setting a slice with a ``np.timedelta64`` (:issue:`14155`)
15291529
- Bug in ``Index`` raises ``OutOfBoundsDatetime`` if ``datetime`` exceeds ``datetime64[ns]`` bounds, rather than coercing to ``object`` dtype (:issue:`13663`)
15301530
- Bug in ``Index`` may ignore specified ``datetime64`` or ``timedelta64`` passed as ``dtype`` (:issue:`13981`)
15311531
- Bug in ``RangeIndex`` can be created without no arguments rather than raises ``TypeError`` (:issue:`13793`)

doc/source/whatsnew/v0.19.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Bug Fixes
5555
- Bug in ``pd.concat`` with dataframes heterogeneous in length and tuple ``keys`` (:issue:`14438`)
5656
- Bug in ``MultiIndex.set_levels`` where illegal level values were still set after raising an error (:issue:`13754`)
5757
- Bug in ``DataFrame.to_json`` where ``lines=True`` and a value contained a ``}`` character (:issue:`14391`)
58-
- Bug in ``df.groupby`` causing an ``AttributeError`` when grouping a single index frame by a column and the index level (:issue`14327`)
58+
- Bug in ``df.groupby`` causing an ``AttributeError`` when grouping a single index frame by a column and the index level (:issue:`14327`)
5959
- Bug in ``df.groupby`` where ``TypeError`` raised when ``pd.Grouper(key=...)`` is passed in a list (:issue:`14334`)
6060
- Bug in ``pd.pivot_table`` may raise ``TypeError`` or ``ValueError`` when ``index`` or ``columns``
6161
is not scalar and ``values`` is not specified (:issue:`14380`)

doc/source/whatsnew/v0.20.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1711,7 +1711,7 @@ Reshaping
17111711
- Bug in ``pd.concat()`` in which concatenating with an empty dataframe with ``join='inner'`` was being improperly handled (:issue:`15328`)
17121712
- Bug with ``sort=True`` in ``DataFrame.join`` and ``pd.merge`` when joining on indexes (:issue:`15582`)
17131713
- Bug in ``DataFrame.nsmallest`` and ``DataFrame.nlargest`` where identical values resulted in duplicated rows (:issue:`15297`)
1714-
- Bug in :func:`pandas.pivot_table` incorrectly raising ``UnicodeError`` when passing unicode input for ```margins`` keyword (:issue:`13292`)
1714+
- Bug in :func:`pandas.pivot_table` incorrectly raising ``UnicodeError`` when passing unicode input for ``margins`` keyword (:issue:`13292`)
17151715

17161716
Numeric
17171717
^^^^^^^

doc/source/whatsnew/v0.20.2.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Bug Fixes
4444
- Silenced a warning on some Windows environments about "tput: terminal attributes: No such device or address" when
4545
detecting the terminal size. This fix only applies to python 3 (:issue:`16496`)
4646
- Bug in using ``pathlib.Path`` or ``py.path.local`` objects with io functions (:issue:`16291`)
47-
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a ``TypeError`` (:issue `13490`)
47+
- Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a ``TypeError`` (:issue:`13490`)
4848
- Bug in ``DataFrame.update()`` with ``overwrite=False`` and ``NaN values`` (:issue:`15593`)
4949
- Passing an invalid engine to :func:`read_csv` now raises an informative
5050
``ValueError`` rather than ``UnboundLocalError``. (:issue:`16511`)
@@ -83,7 +83,7 @@ Plotting
8383
^^^^^^^^
8484

8585
- Bug in ``DataFrame.plot`` with a single column and a list-like ``color`` (:issue:`3486`)
86-
- Bug in ``plot`` where ``NaT`` in ``DatetimeIndex`` results in ``Timestamp.min`` (:issue: `12405`)
86+
- Bug in ``plot`` where ``NaT`` in ``DatetimeIndex`` results in ``Timestamp.min`` (:issue:`12405`)
8787
- Bug in ``DataFrame.boxplot`` where ``figsize`` keyword was not respected for non-grouped boxplots (:issue:`11959`)
8888

8989

doc/source/whatsnew/v0.21.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ nicely format the x-axis for ``DatetimeIndex`` or ``PeriodIndex`` values. You
895895
must explicitly register these methods:
896896

897897
Pandas built-in ``Series.plot`` and ``DataFrame.plot`` *will* register these
898-
converters on first-use (:issue:17710).
898+
converters on first-use (:issue:`17710`).
899899

900900
.. note::
901901

@@ -1047,7 +1047,7 @@ Conversion
10471047
- Bug in :attr:`Timestamp.weekday_name` returning a UTC-based weekday name when localized to a timezone (:issue:`17354`)
10481048
- Bug in ``Timestamp.replace`` when replacing ``tzinfo`` around DST changes (:issue:`15683`)
10491049
- Bug in ``Timedelta`` construction and arithmetic that would not propagate the ``Overflow`` exception (:issue:`17367`)
1050-
- Bug in :meth:`~DataFrame.astype` converting to object dtype when passed extension type classes (`DatetimeTZDtype``, ``CategoricalDtype``) rather than instances. Now a ``TypeError`` is raised when a class is passed (:issue:`17780`).
1050+
- Bug in :meth:`~DataFrame.astype` converting to object dtype when passed extension type classes (``DatetimeTZDtype``, ``CategoricalDtype``) rather than instances. Now a ``TypeError`` is raised when a class is passed (:issue:`17780`).
10511051
- Bug in :meth:`to_numeric` in which elements were not always being coerced to numeric when ``errors='coerce'`` (:issue:`17007`, :issue:`17125`)
10521052
- Bug in ``DataFrame`` and ``Series`` constructors where ``range`` objects are converted to ``int32`` dtype on Windows instead of ``int64`` (:issue:`16804`)
10531053

doc/source/whatsnew/v0.21.1.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Deprecations
8181
~~~~~~~~~~~~
8282

8383
- ``pandas.tseries.register`` has been renamed to
84-
:func:`pandas.plotting.register_matplotlib_converters`` (:issue:`18301`)
84+
:func:`pandas.plotting.register_matplotlib_converters` (:issue:`18301`)
8585

8686
.. _whatsnew_0211.performance:
8787

@@ -101,7 +101,7 @@ Conversion
101101
- Bug in :class:`TimedeltaIndex` subtraction could incorrectly overflow when ``NaT`` is present (:issue:`17791`)
102102
- Bug in :class:`DatetimeIndex` subtracting datetimelike from DatetimeIndex could fail to overflow (:issue:`18020`)
103103
- Bug in :meth:`IntervalIndex.copy` when copying and ``IntervalIndex`` with non-default ``closed`` (:issue:`18339`)
104-
- Bug in :func:`DataFrame.to_dict` where columns of datetime that are tz-aware were not converted to required arrays when used with ``orient='records'``, raising``TypeError` (:issue:`18372`)
104+
- Bug in :func:`DataFrame.to_dict` where columns of datetime that are tz-aware were not converted to required arrays when used with ``orient='records'``, raising ``TypeError`` (:issue:`18372`)
105105
- Bug in :class:`DateTimeIndex` and :meth:`date_range` where mismatching tz-aware ``start`` and ``end`` timezones would not raise an err if ``end.tzinfo`` is None (:issue:`18431`)
106106
- Bug in :meth:`Series.fillna` which raised when passed a long integer on Python 2 (:issue:`18159`).
107107

doc/source/whatsnew/v0.23.0.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,10 @@ Previous Behavior (and current behavior if on Python < 3.6):
569569

570570
.. code-block:: ipython
571571

572-
In [1]: pd.Series({'Income': 2000,
573-
'Expenses': -1500,
574-
'Taxes': -200,
575-
'Net result': 300})
572+
pd.Series({'Income': 2000,
573+
'Expenses': -1500,
574+
'Taxes': -200,
575+
'Net result': 300})
576576
Expenses -1500
577577
Income 2000
578578
Net result 300

doc/source/whatsnew/v0.8.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Other new features
123123
- Enhanced :ref:`read_csv/read_table <io.parse_dates>` for reading time series
124124
data and converting multiple columns to dates
125125
- Add :ref:`comments <io.comments>` option to parser functions: read_csv, etc.
126-
- Add :ref`dayfirst <io.dayfirst>` option to parser functions for parsing
126+
- Add :ref:`dayfirst <io.dayfirst>` option to parser functions for parsing
127127
international DD/MM/YYYY dates
128128
- Allow the user to specify the CSV reader :ref:`dialect <io.dialect>` to
129129
control quoting etc.

0 commit comments

Comments
 (0)