You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.23.0.txt
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -388,6 +388,23 @@ Convert to an xarray DataArray
388
388
389
389
p.to_xarray()
390
390
391
+
392
+
393
+
.. _whatsnew_0230.api_breaking.core_common:
394
+
395
+
pandas.core.common removals
396
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
397
+
398
+
The following error & warning messages are removed from ``pandas.core.common`` (:issue:`13634`, :issue:`19769`):
399
+
400
+
- ``PerformanceWarning``
401
+
- ``UnsupportedFunctionCall``
402
+
- ``UnsortedIndexError``
403
+
- ``AbstractMethodError``
404
+
405
+
These are available from import from ``pandas.errors`` (since 0.19.0).
406
+
407
+
391
408
.. _whatsnew_0230.api_breaking.apply:
392
409
393
410
Changes to make output of ``DataFrame.apply`` consistent
@@ -638,7 +655,7 @@ Removal of prior version deprecations/changes
638
655
- The modules `pandas.tools.hashing` and `pandas.util.hashing` have been removed (:issue:`16223`)
639
656
- The top-level functions ``pd.rolling_*``, ``pd.expanding_*`` and ``pd.ewm*`` have been removed (Deprecated since v0.18).
640
657
Instead, use the DataFrame/Series methods :attr:`~DataFrame.rolling`, :attr:`~DataFrame.expanding` and :attr:`~DataFrame.ewm` (:issue:`18723`)
641
-
- Imports from ``pandas.core.common`` for api like functions such as ``is_datetime64_dtype`` are now removed. These are located in ``pandas.api.types``. Furthermore, errors are removed as well from ``pandas.core.common`` and are available in ``pandas.errors`` (:issue:`13990`)
658
+
- Imports from ``pandas.core.common`` for functions such as ``is_datetime64_dtype`` are now removed. These are located in ``pandas.api.types``. (:issue:`13634`, :issue:`19769`)
0 commit comments