Skip to content

Commit 56957cf

Browse files
jrebackjowens
authored andcommitted
DOC: whatsnew 0.21.0 fixes
1 parent 5b42bdf commit 56957cf

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
@@ -220,7 +220,7 @@ Other API Changes
220220
- ``Index.get_indexer_non_unique()`` now returns a ndarray indexer rather than an ``Index``; this is consistent with ``Index.get_indexer()`` (:issue:`16819`)
221221
- 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`)
222222
- Moved definition of ``MergeError`` to the ``pandas.errors`` module.
223-
- 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`)
223+
- 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`)
224224

225225

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

323323
Numeric
324324
^^^^^^^

0 commit comments

Comments
 (0)