Skip to content

Commit 55ae039

Browse files
committed
DOC: whatsnew 0.21.0 fixes
1 parent 9091330 commit 55ae039

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

doc/source/api.rst

+8
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ Feather
109109

110110
read_feather
111111

112+
Parquet
113+
~~~~~~~
114+
115+
.. autosummary::
116+
:toctree: generated/
117+
118+
read_parquet
119+
112120
SAS
113121
~~~
114122

doc/source/whatsnew/v0.21.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Other API Changes
219219
- ``Index.get_indexer_non_unique()`` now returns a ndarray indexer rather than an ``Index``; this is consistent with ``Index.get_indexer()`` (:issue:`16819`)
220220
- Removed the ``@slow`` decorator from ``pandas.util.testing``, which caused issues for some downstream packages' test suites. Use ``@pytest.mark.slow`` instead, which achieves the same thing (:issue:`16850`)
221221
- Moved definition of ``MergeError`` to the ``pandas.errors`` module.
222-
- The signature of :func:`Series.set_axis` and :func:`DataFrame.set_axis` has been changed from ``set_axis(axis, labels)`` to ``set_axis(labels, axis=0)``, for consistency with the rest of the API. The old signature is still supported and causes a ``FutureWarning`` to be emitted (:issue:`14636`)
222+
- The signature of :func:`Series.set_axis` and :func:`DataFrame.set_axis` has been changed from ``set_axis(axis, labels)`` to ``set_axis(labels, axis=0)``, for consistency with the rest of the API. The old signature is deprecated and will show a ``FutureWarning`` (:issue:`14636`)
223223

224224

225225
.. _whatsnew_0210.deprecations:
@@ -317,7 +317,7 @@ Reshaping
317317
- Bug when using :func:`isin` on a large object series and large comparison array (:issue:`16012`)
318318
- Fixes regression from 0.20, :func:`Series.aggregate` and :func:`DataFrame.aggregate` allow dictionaries as return values again (:issue:`16741`)
319319
- Fixes dtype of result with integer dtype input, from :func:`pivot_table` when called with ``margins=True`` (:issue:`17013`)
320-
- Bug in ``pd.crosstab()`` where passing two ``Series`` with the same name raised a ``KeyError`` (:issue:`13279`)
320+
- Bug in :func:`crosstab` where passing two ``Series`` with the same name raised a ``KeyError`` (:issue:`13279`)
321321

322322
Numeric
323323
^^^^^^^

0 commit comments

Comments
 (0)